In [1]:
%matplotlib inline
import numpy as np
import scipy as sp
import matplotlib as mpl
import matplotlib.cm as cm
import matplotlib.pyplot as plt
import pandas as pd
import time
import json
import statsmodels.api as sm
from statsmodels.formula.api import logit, glm, ols

pd.set_option('display.width', 500)
pd.set_option('display.max_columns', 100)
pd.set_option('display.notebook_repr_html', True)
import seaborn as sns
sns.set_style("whitegrid")
sns.set_context("poster")
import math
from sklearn.svm import LinearSVC

First import our dataset & dictionary


In [2]:
# with open("IMDB_dftouse_dict.json", "r") as fd:
#     IMDB_dftouse_dict = json.load(fd)
# maas_IMDB = pd.DataFrame(IMDB_dftouse_dict)

with open("complete_valence.json", "r") as fp:
    complete_valence = json.load(fp)
maas_IMDB = pd.DataFrame(complete_valence)

In [3]:
maas_IMDB.head()


Out[3]:
close_date close_year gross n_scorables open_date open_year opening_gross opening_theaters pct_scorables rank review_title stars text theaters title valence_avg valence_sum year
0 NaN 1990 285761243 144 632448000000 1990 17081997 1202 0.701389 1 My favourite Christmas movie! 10 it just isn't christmas if i don't watch home... 2173 Home Alone 0.758622 76.620792 1990
1 NaN 1990 285761243 65 632448000000 1990 17081997 1202 0.738462 1 Very funny family movie 8 this is a very funny movie for kids and peopl... 2173 Home Alone 1.408094 67.588495 1990
10 NaN 2001 55835 82 978739200000 2001 9134 7 0.719512 304 The worst book to screen adaption I have ever ... 1 i've read all of these books and perhaps that... 12 Beautiful Creatures 0.446455 26.340859 2001
100 NaN 1996 2491989 23 822960000000 1996 1593929 1292 0.695652 174 Cheesy! Cameos! And learn how to be your own g... 8 this is one of those movies which is so bad ... 1292 The Stupids 0.292260 4.676165 1996
1000 NaN 1996 1408575 30 821318400000 1996 33843 2 0.533333 189 Not a good induction to Shakespeare. N/A the film would have been better if the actor... 81 Looking for Richard 1.055385 16.886165 1996

In [4]:
maas_IMDB.shape


Out[4]:
(537550, 18)

In [5]:
# maas_IMDB[maas_IMDB.movie_id==10030].text[3]

In [6]:
with open("happiness.json", "r") as fp:
    happiness = json.load(fp)

In [7]:
len(happiness)


Out[7]:
10222

Now we begin the Natural Language processing

This will take the form of a few steps.

  1. Punctuation: we will remove punctuation from reviews, so that all words can be recognized
  2. Lemmatization: we will reduce words to lemmas
  3. Removing stop words: we will remove common words from our vocabulary, because they are unlikely to have been used to express sentiment -- which is what we are interested in

Emulating HW5

  1. For each review create a list of nouns, and a list of adjectives
  2. For the nouns, perform LDA to separate them into 2 topics to see if there are 2 topics that are relevant i.e. actors vs. plot or whether it's sequel or a stand alone movie
  3. Run the sentiment analysis on the adjectives (N.B. At this point it is still not on an external dataset)
  4. Putting the topics and sentiment analysis together (marrying the nouns & the adjectives)
  5. Estimate the overall mean for each movie on each topic

In [8]:
from pattern.en import parse
from pattern.en import pprint
from pattern.vector import stem, PORTER, LEMMA
punctuation = list('.,;:!?()[]{}`''\"@#$^&*+-|=~_')

In [9]:
from sklearn.feature_extraction import text 
stopwords=text.ENGLISH_STOP_WORDS

1. For each review create a list of nouns, and a list of adjectives


In [10]:
import re
regex1=re.compile(r"\.{2,}")
regex2=re.compile(r"\-{2,}")

In [11]:
def get_parts(thetext):
    thetext=re.sub(regex1, ' ', thetext)
    thetext=re.sub(regex2, ' ', thetext)
    nouns=[]
    descriptives=[]
    for i,sentence in enumerate(parse(thetext, tokenize=True, lemmata=True).split()):
        nouns.append([])
        descriptives.append([])
        for token in sentence:
            #print token
            if len(token[4]) >0:
                if token[1] in ['JJ', 'JJR', 'JJS']:
                    if token[4] in stopwords or token[4][0] in punctuation or token[4][-1] in punctuation or len(token[4])==1:
                        continue
                    descriptives[i].append(token[4])
                elif token[1] in ['NN', 'NNS']:
                    if token[4] in stopwords or token[4][0] in punctuation or token[4][-1] in punctuation or len(token[4])==1:
                        continue
                    nouns[i].append(token[4])
    out=zip(nouns, descriptives)
    nouns2=[]
    descriptives2=[]
    for n,d in out:
        if len(n)!=0 and len(d)!=0:
            nouns2.append(n)
            descriptives2.append(d)
    return nouns2, descriptives2

In [13]:
from random import random

In [21]:
%%time
# review_parts = maas_IMDB.map(lambda x: get_parts(x.text))
review_parts = []
for index, row in maas_IMDB[:5].iterrows():
    review_parts.append(get_parts(row.text))
    if random() < 0.1: 
        str(int(index)*100./537550) + "%"


<type 'unicode'>
<type 'unicode'>
<type 'unicode'>
<type 'unicode'>
<type 'unicode'>
CPU times: user 129 ms, sys: 26.5 ms, total: 156 ms
Wall time: 133 ms

In [14]:
review_parts[1]


Out[14]:
([[u'movie', u'movie'],
  [u'movie', u'rating'],
  [u'movie', u'acting'],
  [u'job'],
  [u'<br', u'day'],
  [u'effect', u'more.<br', u'movie', u'rent']],
 [[u'great'],
  [u'star'],
  [u'superb'],
  [u'better'],
  [u'rainy'],
  [u'acting', u'special']])

2. For the nouns, perform LDA to separate them into 2 topics


In [15]:
ldadata = [ele[0] for ele in review_parts]

In [16]:
ldadata


Out[16]:
[[[u'sure', u'movie', u'time', u'time', u'opinion', u'film', u'change'],
  [u'time', u'movie', u'ooh'],
  [u'time', u'movie', u'thinking', u'd**n', u'ship'],
  [u'time'],
  [u'acting', u'film'],
  [u'oscar', u'film'],
  [u'movie', u'film'],
  [u'film'],
  [u'eye', u'character', u'film'],
  [u'performance', u'hand'],
  [u'director', u'film', u'magnitude'],
  [u'lesson', u'movie', u'love-story', u'filmmaker', u'romance', u'movie'],
  [u'film']],
 [[u'movie', u'movie'],
  [u'movie', u'rating'],
  [u'movie', u'acting'],
  [u'job'],
  [u'<br', u'day'],
  [u'effect', u'more.<br', u'movie', u'rent']],
 [[u'picture'],
  [u'scene', u'dinner', u'table', u'scene', u'family', u'friend'],
  [u'look',
   u'face',
   u'woman',
   u'room',
   u'future',
   u'husband.<br',
   u'connection',
   u'movie',
   u'movie',
   u'stuff'],
  [u'mom', u'associate', u'husband', u'wealth'],
  [u'risk.<br', u'movie'],
  [u'story', u'flow', u'actor']],
 [[u'movie', u'miracle'],
  [u'mountain', u'terrorist'],
  [u'mountain',
   u'place',
   u'action',
   u'movie',
   u'movie',
   u'snow',
   u'ice',
   u'cold',
   u'weather',
   u'man'],
  [u'film'],
  [u'guy', u'star', u'portrait', u'serialkiller', u'medicine'],
  [u'place', u'movie'],
  [u'movie', u'\xe4\xe4li\xf6t', u'collector', u'edition', u'extra']],
 [[u'childhood', u'memory', u'movie', u'touch'],
  [u'scene', u'person', u'villain', u'movie'],
  [u'cop',
   u'clich\xe9s',
   u'script',
   u'hole',
   u'truck',
   u'twist',
   u'story',
   u'run'],
  [u'ass',
   u'cop',
   u'serial',
   u'killer',
   u'gas',
   u'chamber',
   u'minion',
   u'power',
   u'resurrection',
   u'power',
   u'person'],
  [u'mix', u'case.<br', u'trash'],
  [u'memory'],
  [u'kid', u'scene', u'person'],
  [u'kind',
   u'logic',
   u'scenario',
   u'measure',
   u'cross',
   u'action',
   u'flick',
   u'flick'],
  [u'idea', u'lead'],
  [u'best', u'problem', u'guy', u'reviewer'],
  [u'killer', u'doctor', u'day', u'work', u'brain', u'switch-off'],
  [u'beer', u'experience', u'load', u'time', u'movie', u'spin'],
  [u'flick', u'pleasure', u'fan', u'kid']],
 [[u'comedian', u'movie'],
  [u'writer', u'comedy'],
  [u'preview', u'movie'],
  [u'movie'],
  [u'kind', u'stuff', u'person'],
  [u'child', u'child']],
 [[u'premise', u'cast', u'movie'],
  [u'excitement'],
  [u'person', u'lot', u'movie', u'character', u'movie'],
  [u'interaction', u'character', u'comedy', u'drama', u'element'],
  [u'movie', u'actress', u'way', u'scenario', u'riot']],
 [[u'closing', u'stage', u'character', u'outline', u'mess'],
  [u'feature', u'ray', u'hope', u'majority', u'time'],
  [u'cast',
   u'script',
   u'caricature',
   u'character',
   u'noggin',
   u'sense',
   u'humour'],
  [u'clich\xe9',
   u'joke',
   u'couple',
   u'baby',
   u'world',
   u'film',
   u'laugh',
   u'demographic.<br',
   u'story',
   u'love',
   u'plot',
   u'line',
   u'side-story',
   u'sort',
   u'couple',
   u'characterisation',
   u'romance',
   u'bubble'],
  [u'character',
   u'figure',
   u'space',
   u'emptiness',
   u'character',
   u'interaction',
   u'time',
   u'comedy',
   u'branch',
   u'chuckle',
   u'character'],
  [u'work',
   u'persona',
   u'confine',
   u'formula.<br',
   u'business',
   u'woman',
   u'class',
   u'surrogate',
   u'husband',
   u'difference'],
  [u'odd-couple',
   u'premise',
   u'year',
   u'movie',
   u'chemistry',
   u'performer',
   u'character'],
  [u'personality',
   u'outline',
   u'performer',
   u'role',
   u'demand',
   u'chemistry',
   u'air'],
  [u'fact',
   u'movie',
   u'engaging',
   u'performance',
   u'character',
   u'talent',
   u'door-man'],
  [u'time',
   u'moment',
   u'man',
   u'remainder',
   u'thing',
   u'course',
   u'movie',
   u'script',
   u'theme',
   u'way',
   u'world',
   u'camera',
   u'director',
   u'page',
   u'screen'],
  [u'film', u'baby', u'dollar', u'business', u'stereotyping', u'thing'],
  [u'hammy', u'plastic', u'tinsel-town', u'capital', u'bore', u'sugar'],
  [u'character', u'nature', u'world'],
  [u'dialogue',
   u'set',
   u'costume',
   u'script',
   u'theme',
   u'blue',
   u'pink',
   u'shade',
   u'humanity',
   u'director',
   u'need',
   u'movie',
   u'feel',
   u'fantasy',
   u'character',
   u'world'],
  [u'end',
   u'day',
   u'comedy',
   u'gauge',
   u'success',
   u'failure',
   u'chemistry',
   u'love',
   u'frequency',
   u'laugh',
   u'department'],
  [u'course', u'film', u'value'],
  [u'audience', u'boat', u'character', u'kick', u'proceedings'],
  [u'respect',
   u'look',
   u'outside',
   u'audience',
   u'dud',
   u'mismatch',
   u'review']],
 [[u'star', u'dot', u'marker', u'something.<br', u'total', u'scene', u'movie'],
  [u'trafficking', u'stereotype', u'speed', u'soundtrack', u'soundtrack'],
  [u'<br', u'scene', u'kind', u'way'],
  [u'mixture',
   u'ape',
   u'man',
   u'skit',
   u'money',
   u'birth',
   u'parody',
   u'guy',
   u'servant',
   u'man',
   u'role',
   u'human.<br'],
  [u'girl'],
  [u'mom',
   u'half',
   u'men',
   u'movie',
   u'kind',
   u'surgery',
   u'mouth',
   u'mouth',
   u'year',
   u'scene',
   u'face',
   u'mind',
   u'question'],
  [u'surgery'],
  [u'viewer', u'surgery']],
 [[u'time'],
  [u'laugh'],
  [u'movie'],
  [u'scene', u'heartwarming', u'team'],
  [u'movie'],
  [u'ending', u'smile', u'face'],
  [u'dull.<br', u'comedy', u'year'],
  [u'comedy']],
 [[u'president', u'chain', u'health', u'food', u'store'],
  [u'slew', u'work', u'whoring', u'movie'],
  [u'coach', u'lisp'],
  [u'motion', u'minute', u'skit'],
  [u'character'],
  [u'matter', u'attempt', u'laugh']],
 [[u'person',
   u'brain',
   u're-writes."<br',
   u'bastardization',
   u'work',
   u'character'],
  [u'book', u'female', u'protagonist', u'way', u'problem'],
  [u'damsel',
   u'distress',
   u'reference',
   u'law',
   u'afterthought',
   u'action',
   u'scenes.<br',
   u'film',
   u'story']],
 [[u'theathre',
   u'ticket',
   u'hand',
   u'fantasy',
   u'movie',
   u'appetite',
   u'movie',
   u'robot-technology',
   u'aspect',
   u'effect',
   u'plot',
   u'opinion',
   u'year'],
  [u'acting', u'movie', u'movie', u'men', u'success', u'opinion']],
 [[u'feature', u'rendering', u'art', u'direction'],
  [u'product', u'placement', u'disaster', u'performance', u'plot-hole'],
  [u'mixture',
   u'production',
   u'value',
   u'dialogue',
   u'children.<br',
   u'shame',
   u'extent',
   u'director']],
 [[u'action'],
  [u'place', u'mountain', u'scenery'],
  [u'scene', u'film', u'horror'],
  [u'picture']],
 [[u'comment', u'movie', u'kind', u'science', u'fiction', u'movie-goer'],
  [u'history', u'genre', u'height', u'hand', u'author'],
  [u'critic',
   u'story',
   u'ray',
   u'gun',
   u'alien',
   u'pre-pubescent',
   u'teenager'],
  [u'today',
   u'fan',
   u'history',
   u'author',
   u'science',
   u'fiction',
   u'basement'],
  [u'thought', u'provoking', u'story', u'boundary', u'condition'],
  [u'fan'],
  [u'sake', u'eye'],
  [u'record'],
  [u'computer', u'graphic', u'action', u'sequence'],
  [u'emperor',
   u'clothe',
   u'loudest.<br',
   u'type',
   u'science',
   u'fiction',
   u'movie',
   u'goer',
   u'knowledge',
   u'aspect',
   u'genre'],
  [u'plot',
   u'hole',
   u'premise',
   u'story',
   u'line',
   u'dose',
   u'wiz',
   u'bang',
   u'action',
   u'effect'],
  [u'effect', u'thinking', u'skill'],
  [u'story', u'novel', u'humanity', u'creation'],
  [u'<br', u'film', u'plot', u'hole', u'point', u'limit', u'credulity'],
  [u'character', u'character', u'intelligence', u'hallmark', u'story'],
  [u'belief',
   u'humanity',
   u'capacity',
   u'problem',
   u'mind',
   u'fist',
   u'vision',
   u'future'],
  [u'movie'],
  [u'state', u'movie', u'book'],
  [u'work', u'title'],
  [u'question', u'body', u'work', u'title', u'piece', u'crap'],
  [u'fact', u'title', u'moviegoer'],
  [u'light'],
  [u'audience', u'dredge']],
 [[u'robot',
   u'community',
   u'rise',
   u'lot',
   u'insult',
   u'name-calling',
   u'too).<br',
   u'film'],
  [u'population', u'clich\xe9d', u're-heat', u'work'],
  [u'film',
   u'retread',
   u'plot',
   u'line',
   u'mix',
   u'uber-action',
   u'character',
   u'cynic',
   u'backbone',
   u'titanium',
   u'effect',
   u'others).<br',
   u'robot',
   u'action',
   u'movie',
   u'today',
   u'audience',
   u'plot',
   u'dialog',
   u'lot',
   u'lot',
   u'adrenaline'],
  [u'attempt'],
  [u'blockbuster', u'today', u'standard', u'b-movie', u'winner']],
 [[u'film', u'year'],
  [u'plot',
   u'aspect',
   u'copy',
   u'matrix',
   u'plenty',
   u'clich\xe9',
   u'wolf',
   u'cop',
   u'gun',
   u'worker',
   u'shy',
   u'she-scientist',
   u'cent',
   u'plot',
   u'robot'],
  [u'advertising',
   u'brand',
   u'movie',
   u'commercialization',
   u'ad',
   u'spot',
   u'sec'],
  [u'enemy', u'time', u'tv', u'program', u'book']],
 [[u'spite',
   u'future-design',
   u'touch',
   u'premise',
   u'cool',
   u'performance',
   u'movie',
   u'expectation'],
  [u'nightmare',
   u'maverick',
   u'cop',
   u'badge',
   u'hardass',
   u'lieutenant',
   u'list',
   u'end',
   u'mile'],
  [u'movie', u'disaster'],
  [u'robot', u'crowd', u'scene'],
  [u'movie', u'question', u'start', u'climax'],
  [u'sum', u'plot', u'action', u'film', u'year']],
 [[u'film', u'culmination', u'film'],
  [u'motion', u'flipping', u'character', u'dialogue', u'unnecessity'],
  [u'car',
   u'garage',
   u'skin',
   u'spray',
   u'tool',
   u'combination',
   u'function',
   u'card',
   u'swipe',
   u'coffee',
   u'shop.<br',
   u'respect',
   u'woman'],
  [u'character', u'doctor', u'film'],
  [u'look', u'admiration', u'ground)<br', u'detective'],
  [u'feel', u'sorry', u'person', u'thought'],
  [u'way', u'story', u'point', u'b-c-d-etc', u'time', u'row'],
  [u'scene?)<br', u'movie', u'tool', u'rescue', u'scene'],
  [u'bike',
   u'air',
   u'doctor',
   u'distance',
   u'matter',
   u'second',
   u'foot.<br',
   u'spectacle'],
  [u'shred', u'realism', u'meaning.<br', u'film', u'time'],
  [u'<br',
   u'swing',
   u'pendulum',
   u'technique',
   u'story',
   u'film',
   u'techniques.<br',
   u'film']],
 [[u'movie'],
  [u'rival', u'number', u'moment'],
  [u'couple', u'line', u'film', u'crap'],
  [u'weekend', u'resort'],
  [u'sideline']],
 [[u'wife', u'it.<br', u'spades.<br', u'character', u'film'],
  [u'sure', u'couple', u'joke', u'character', u'space.<br'],
  [u'past', u'lady'],
  [u'flick'],
  [u'wife', u'thing'],
  [u'character.<br', u'night', u'laugh', u'value'],
  [u'comedy', u'film']],
 [[u'movie'], [u'storyline'], [u'joke'], [u'movie']],
 [[u'role']],
 [[u'film', u'dissapointment'],
  [u'talent',
   u'director',
   u'lead',
   u'story',
   u'conclusion',
   u'dire',
   u'character'],
  [u'role',
   u'fidelity',
   u'humour',
   u'hyper-active',
   u'alter-ego',
   u'project.<br',
   u'comedy',
   u'romance',
   u'character',
   u'chemistry',
   u'comedy',
   u'moment',
   u'humour',
   u'role',
   u'relationship',
   u'scriptwriter',
   u'originality'],
  [u'lover',
   u'turn',
   u'parody',
   u'type',
   u'director',
   u'screen',
   u'time',
   u'groin',
   u'dog'],
  [u'genius.<br',
   u'fan',
   u'majority',
   u'work',
   u'rest',
   u'cast',
   u'film',
   u'plenty',
   u'idea',
   u'time',
   u'genre',
   u'clich',
   u'depth',
   u'gross-out',
   u'teen-movie',
   u'humour',
   u'times.<br']],
 [[u'movie',
   u'set',
   u'action',
   u'movie',
   u'regard',
   u'movie',
   u'cinematography',
   u'mountain',
   u'snow',
   u'heights,a',
   u'performance',
   u'performance',
   u'villain',
   u'shock',
   u'evil',
   u'movie',
   u'time',
   u'becouse',
   u'screen',
   u'plot',
   u'story',
   u'movie',
   u'human,much',
   u'movie',
   u'character',
   u'plot',
   u'excitement',
   u'dialogue',
   u'script',
   u'point',
   u'shooting',
   u'movie',
   u'maker',
   u'shooting',
   u'hit',
   u'quality',
   u'scene',
   u'shooting',
   u'sequence',
   u'plane',
   u'hijacking',
   u'water',
   u'lot',
   u'shooting',
   u'sequence',
   u'tv',
   u'series',
   u'villain',
   u'set',
   u'foot',
   u'mountain',
   u'movie',
   u'lot',
   u'time',
   u'potential.crisper',
   u'action',
   u'dialogue',
   u'style',
   u'emotion',
   u'movie',
   u'level.i',
   u'fault.i',
   u'sense',
   u'movie',
   u'director',
   u'tone',
   u'character',
   u'try',
   u'movie',
   u'credit',
   u'direction',
   u'movie']],
 [],
 [[u'comedy'],
  [u'shambles'],
  [u'person', u'today', u'audience', u'muck'],
  [u'plot', u'razor'],
  [u'chemistry', u'character'],
  [u'reincarnation', u'star', u'age']],
 [[u'scene',
   u'laugh',
   u'walken',
   u'rest',
   u'movie',
   u'hour',
   u'zeta',
   u'jone',
   u'dougla',
   u'robert',
   u'job',
   u'duck'],
  [u'guy.for',
   u'short.i',
   u'characters.if',
   u'cusack',
   u'building',
   u'suicide',
   u'movie']],
 [[u'lot', u'movie', u'actor'],
  [u'movie'],
  [u'person'],
  [u'idea'],
  [u'thing']],
 [[u'it.<br'], [u'purpose'], [u'romance']],
 [[u'cast'],
  [u'bunch', u'thespian', u'tapestry', u'wonder', u'script'],
  [u'sweetheart', u'opportunity'],
  [u'hit'],
  [u'potential'],
  [u'aspect', u'thing'],
  [u'suit']],
 [[u'film', u'star'],
  [u'clich\xe9', u'film', u'actor'],
  [u'surprise', u'list', u'star', u'film'],
  [u'star', u'buck', u'film'],
  [u'rest', u'star', u'motion'],
  [u'fall', u'cast']],
 [[u'actress', u'work', u'standard'],
  [u'movie', u'direction'],
  [u'eye',
   u'sign',
   u'bewilderment',
   u'despair.<br',
   u'thing',
   u'idea',
   u'director',
   u'movie',
   u'documentary',
   u'actor'],
  [u'star', u'experience'],
  [u'movie']],
 [[u'light'],
  [u'film',
   u'feature',
   u'star',
   u'half',
   u'joke',
   u'that.<br',
   u'stinker',
   u'couple',
   u'bit'],
  [u'comedy'],
  [u'dialogue', u'way', u'premise'],
  [u'movie', u'focus', u'way', u'film', u'phony', u'critic'],
  [u'film',
   u'territory',
   u'press',
   u'junket',
   u'expense',
   u'trip',
   u'journalist',
   u'reviews'],
  [u'motherlode',
   u'joke',
   u'minute',
   u'territory',
   u'pursuit',
   u'film',
   u'romance.<br',
   u'character',
   u'whinny',
   u'self',
   u'movie',
   u'star'],
  [u'zeta-jone', u'job'],
  [u'junk',
   u'pale',
   u'comparison',
   u'thing',
   u'star',
   u'years.<br',
   u'end',
   u'zeta-jone',
   u'sign',
   u'ship',
   u'rerun'],
  [u'fact', u'joke', u'script', u'deal'],
  [u'story']],
 [[u'movie', u'time'], [u'idea', u'cash', u'masterpiece']],
 [[u'movie',
   u'nerve',
   u'movie!stallone',
   u'always!michael',
   u'performance',
   u'villain!the',
   u'music',
   u'movie',
   u'action',
   u'fan',
   u'watch']],
 [[u'tell', u'shaq', u'basketball'],
  [u'movie', u'level'],
  [u'movie',
   u'shaq',
   u'genie',
   u'boom',
   u'box',
   u'genie',
   u'boom',
   u'box',
   u'lamp'],
  [u'boy', u'francais', u'cappra'],
  [u'movie', u'storyline', u'water', u'world', u'acting', u'flim']],
 [[u'film',
   u'cinema',
   u'movie',
   u'crisis.there',
   u'reason',
   u'movie',
   u'fact',
   u'somebody',
   u'success',
   u'plot',
   u'bit',
   u'screen',
   u'actor']],
 [[u'genie',
   u'line',
   u'kid',
   u'cryin',
   u'dad',
   u'actin',
   u'casting',
   u'effect'],
  [u'movie',
   u'buck',
   u'boombox',
   u'lamp',
   u'cramp',
   u'food',
   u'genie',
   u'movie',
   u'effect'],
  [u'let', u'category'],
  [u'watch', u'buddy', u'laugh']],
 [[u'movie', u'kid', u'movie', u'humanity'],
  [u'rapping',
   u'genie',
   u'rapping',
   u'genie',
   u'pun',
   u'dressing',
   u'outfits',
   u'pose',
   u'lot',
   u'light'],
  [u'bit', u'wish', u'lot', u'junk', u'food', u'sky', u'character', u'kid'],
  [u'plot',
   u'film',
   u'kid',
   u'fashion',
   u'great-grandson',
   u'kid',
   u'dialog',
   u'genie',
   u'boom-box'],
  [u'hiarity',
   u'kid',
   u'quasi-slave',
   u'wish',
   u'amend',
   u'shady-gang-type',
   u'father.<br',
   u'son',
   u'father',
   u'story',
   u'line',
   u'movie',
   u'chance',
   u'life',
   u'speech',
   u'father',
   u'son'],
  [u'reason', u'film', u'crux'],
  [u'plot',
   u'line',
   u'treatment',
   u'rap',
   u'dialog',
   u'blossoming',
   u'career'],
  [u'ass', u'guy', u'boom-box'],
  [u'point',
   u'scene',
   u'heart-felt',
   u'moment',
   u'business',
   u'rest',
   u'material'],
  [u'person', u'movie', u'behest', u'popularity', u'player', u'bandwagon'],
  [u'afterword',
   u'fun',
   u'night',
   u'genie-turned-rapper-turned-wisecracker',
   u'fun'],
  [u'movie', u'night', u'effort'],
  [u'brain', u'cell', u'flick', u'candidate']],
 [[u'movie', u'angel', u'wing'],
  [u'crossover',
   u'effort',
   u'work',
   u'plethora',
   u'rap',
   u'album',
   u'epic',
   u'thing',
   u'movie'],
  [u'bunch', u'time', u'movie', u'film', u'tear'],
  [u'fun'],
  [u'thrill',
   u'terribleness.<br',
   u'tv',
   u'film',
   u'scene',
   u'shaq',
   u'genie',
   u'power'],
  [u'disturbing.<br', u'example', u'film'],
  [u'movie']],
 [[u'story'], [u'movie', u'ghetto'], [u'movie']],
 [[u'movie', u'reviews', u'hmm'],
  [u'thought'],
  [u'mind', u'hope', u'kind', u'way'],
  [u'point', u'suffering', u'film', u'term'],
  [u'rap', u'music', u'priest', u'rapper'],
  [u'character', u'character'],
  [u'turd', u'fetus', u'sore', u'watch']],
 [[u'summery', u'film', u'kid', u'radio', u'rapping', u'genie'],
  [u'geny', u'grant', u'wish', u'life', u'father', u'crime'],
  [u'time', u'time', u'rap', u'skills).<br', u'movie', u'athlete', u'sport'],
  [u'movie', u'waste', u'film'],
  [u'character', u'plot', u'dialog', u'joke', u'quarter', u'problem'],
  [u'movie', u'pun', u'time'],
  [u'thing', u'waste', u'time'],
  [u'time', u'movie']],
 [[u'movie',
   u'wasting',
   u'hour',
   u'minute',
   u'life',
   u'summary',
   u'ghetto',
   u'boom',
   u'box',
   u'kid',
   u'hair',
   u'wish',
   u'kid',
   u'wish',
   u'shaq',
   u'rapping',
   u'guess',
   u'it.<br',
   u'shear',
   u'comedy',
   u'skill',
   u'nba',
   u'player',
   u'boy',
   u'hair.<br',
   u'movie',
   u'college',
   u'kid',
   u'beer',
   u'friend',
   u'need',
   u'laugh.<br',
   u'movie',
   u'wishes.<br',
   u'movie',
   u'waste',
   u'money']],
 [[u'movie', u'critic', u'time', u'film', u'film', u'decade'],
  [u'fact', u'surprise'],
  [u'thing'],
  [u'brain', u'film'],
  [u'movie',
   u'baseball',
   u'chimp',
   u'ever-popular',
   u'troll',
   u'superhero',
   u'baby'],
  [u'idea', u'matter', u'screen'],
  [u'idea', u'basketball', u'player', u'time', u'genie', u'brat'],
  [u'<br', u'film', u'kid', u'locker', u'hallway', u'school'],
  [u'punk', u'kid', u'word', u'brat', u'matter', u'end', u'film'],
  [u'punk', u'kid', u'end', u'prison', u'end', u'film'],
  [u'neighborhood', u'middle', u'pummeling', u'genie', u'brat', u'wish'],
  [u'kid', u'genie', u'magic', u'tad', u'rusty.<br', u'brat'],
  [u'kid', u'wish', u'meantime', u'servant'],
  [u'clich\xe9', u'end', u'film', u'buddy', u'bunch', u'tear'],
  [u'term', u'father', u'mom', u'gag'],
  [u'genie',
   u'bit',
   u'worker',
   u'addition',
   u'granter',
   u'wishes.<br',
   u'rhyme',
   u'movie',
   u'rap'],
  [u'guy', u'rap'],
  [u'basketball', u'player', u'guy', u'way'],
  [u'acting', u'personality', u'film', u'lot', u'things.<br', u'movie'],
  [u'kid', u'script'],
  [u'film', u'kid'],
  [u'plot', u'guy', u'rap', u'star'],
  [u'mobster'],
  [u'kid', u'kid', u'film'],
  [u'kid', u'film', u'history', u'god', u'hallucination'],
  [u'weirder', u'boy', u'brain'],
  [u'dialog', u'film', u'writer'],
  [u'folk', u'message', u'non-kid', u'material', u'character', u'film'],
  [u'idea',
   u'actor',
   u'product',
   u'worse!!<br',
   u'way',
   u'world',
   u'film',
   u'tv',
   u'film',
   u'film',
   u'start']],
 [[u'mountain',
   u'climber',
   u'friend',
   u'hostage',
   u'mercenary',
   u'suitcase',
   u'money',
   u'dollar'],
  [u'action', u'sequence', u'edge', u'seat', u'fun', u'time', u'movie']],
 [[u'outfit'],
  [u'year', u'son', u'screen', u'rapping', u'wish', u'tooth'],
  [u'terribleness', u'story', u'hole', u'quicksand', u'tar', u'pit'],
  [u'laugh']],
 [[u'fan', u'movie', u'acting'],
  [u'player', u'movie'],
  [u'actor', u'movie'],
  [u'way', u'movie', u'kid'],
  [u'zero']],
 [[u'movie', u'basket-ball', u'player'],
  [u'rapping'],
  [u'movie'],
  [u'kid'],
  [u'genie', u'career', u'music', u'industry', u'power', u'music'],
  [u'deal', u'effect'],
  [u'teenager', u'computer', u'effect'],
  [u'nightmare', u'plane', u'movie', u'word', u'level']],
 [[u'book',
   u'version',
   u'birthday',
   u'person',
   u'book',
   u'version',
   u'movie',
   u'time'],
  [u'movie',
   u'soon.<br',
   u'film',
   u'rapping',
   u'genie',
   u'ghetto',
   u'blaster',
   u'reason'],
  [u'kid', u'film', u'actor'],
  [u'neighborhood', u'kid', u'douche', u'bag.<br', u'story'],
  [u'boy',
   u'father',
   u'working',
   u'friend',
   u'life',
   u'father.<br',
   u'year',
   u'idea']],
 [[u'film', u'seen.i', u'film', u'friend', u'minute'],
  [u'plot', u'character.i', u'entertainment'],
  [u'movie', u'scale', u'number']],
 [[u'thing', u'movie', u'scene', u'number', u'character', u'genie', u'movie'],
  [u'story', u'acting'],
  [u'movie']],
 [[u'movie'], [u'basketball']],
 [[u'movie.<br', u'waste', u'time'],
  [u'shame',
   u'person',
   u'community',
   u'theatre',
   u'bar',
   u'basketball',
   u'player',
   u'movie',
   u'cut',
   u'failure',
   u'movie',
   u'no-talent']],
 [[u'film', u'time', u'movie'],
  [u'attempt', u'movie', u'time'],
  [u'director', u'issue', u'film'],
  [u'director', u'chair', u'filmmaker', u'scene'],
  [u'film', u'filmmaker'],
  [u'scene', u'character', u'singing', u'moment', u'cinema', u'history']],
 [[u'film', u'writer', u'delusion', u'grandeur'],
  [u'material', u'elephant'],
  [u'couple', u'detour', u'way', u'interlude', u'plague', u'matter'],
  [u'level', u'performance'],
  [u'character', u'storyline', u'angst'],
  [u'time', u'shtick', u'hour'],
  [u'comparison', u'misogynist'],
  [u'speaking', u'mouth', u'script', u'bomb', u'impact', u'time'],
  [u'soundtrack', u'vocal'],
  [u'rendition', u'number', u'distraction', u'start', u'film'],
  [u'feature',
   u'reviews',
   u'performance',
   u'bunch',
   u'unknown',
   u'role',
   u'claudia',
   u'coke',
   u'fiend',
   u'bent',
   u'self-destruction']],
 [[u'accident', u'climber', u'michelle', u'joyner'],
  [u'month', u'distress', u'set', u'terrorist', u'mastermind'],
  [u'case', u'million', u'dollar'],
  [u'climber', u'helicopter', u'pilot', u'rescue', u'trap', u'man'],
  [u'climber', u'pilot', u'game'],
  [u'money'],
  [u'firepower', u'cold', u'height'],
  [u'survival.<br', u'action', u'picture'],
  [u'film', u'action', u'picture', u'plenty', u'humour'],
  [u'hit'],
  [u'film'],
  [u'entertaining', u'villain'],
  [u'comeback', u'thriller'],
  [u'work', u'filmmaker.<br', u'anamorphic', u'transfer', u'terrific-dolby'],
  [u'crew', u'commentary'],
  [u'action', u'film'],
  [u'screenplay', u'actor:stallone'],
  [u'cinematography'],
  [u'sound', u'editing']],
 [[u'verdict', u'film', u'bulk'],
  [u'total',
   u'philistine',
   u'movie',
   u'police',
   u'academy',
   u'share',
   u'brow',
   u'stuff'],
  [u'self', u'rambling', u'nonsense', u'start', u'person', u'movie'],
  [u'calibre', u'actor', u'average', u'performance'],
  [u'plot',
   u'story',
   u'character',
   u'snail',
   u'pace',
   u'life',
   u'event',
   u'something.<br',
   u'character',
   u'person'],
  [u'play',
   u'life',
   u'story',
   u'length',
   u'character',
   u'flaw',
   u'emotion',
   u'relationship',
   u'degree',
   u'soliloquy',
   u'route'],
  [u'soundtrack',
   u'dire',
   u'quality',
   u'music',
   u'hour',
   u'episode',
   u'rib',
   u'nanny',
   u'goat'],
  [u'bit', u'frog']],
 [[u'magnolia',
   u'wall',
   u'wall',
   u'canvas',
   u'shrieking',
   u'twit',
   u'regret',
   u'guilt',
   u'pain'],
  [u'filmmaker', u'writing', u'ball', u'mess.<br', u'cast', u'performance'],
  [u'scene',
   u'match',
   u'digression',
   u'sin',
   u'pain',
   u'story',
   u'tableaus',
   u'film'],
  [u'sequence',
   u'fate',
   u'person',
   u'circumstance',
   u'believer',
   u'puppeteer',
   u'string'],
  [u'story', u'stuff', u'fable', u'display'],
  [u'form',
   u'convergence',
   u'wave',
   u'regret',
   u'character',
   u'spread',
   u'absolution'],
  [u'field', u'plague', u'end', u'cadre', u'devotee', u'genius', u'music'],
  [u'movie', u'music', u'actor']],
 [[u'history', u'year', u'movie', u'critic', u'public'],
  [u'movie', u'year'],
  [u'self-indulgence', u'acting'],
  [u'film']],
 [[u'let', u'storm'], [u'word', u'time'], [u'rest', u'failure']],
 [[u'problem', u'swearing', u'film'],
  [u'cancer', u'rambling'],
  [u'<br', u'film', u'person', u'life']],
 [[u'lives', u'end', u'turn', u'movie'],
  [u'end', u'hour'],
  [u'kick', u'pant', u'frog', u'scene'],
  [u'movie', u'movie']],
 [[u'minute'],
  [u'story', u'hill'],
  [u'acting', u'film'],
  [u'moment', u'story', u'connect', u'rain', u'frog'],
  [u'movie', u'movie', u'boring']],
 [[u'cast'],
  [u'story', u'line', u'half<br'],
  [u'to<br', u'character', u'their<br', u'life'],
  [u'writer',
   u'glue',
   u'player',
   u'they<br',
   u'glue',
   u'movie',
   u'standstill<br',
   u'hour'],
  [u'<br'],
  [u'plot', u'member']],
 [[u'magnolium', u'showcase'],
  [u'magnolium', u'series', u'episode', u'concern', u'coherence'],
  [u'camera', u'swoops', u'hallway', u'corridor', u'glimpse', u'character'],
  [u'theme', u'person', u'yell', u'lot', u'character', u'jerk', u'piece'],
  [u'monster', u'father'],
  [u'character', u'time', u'them?<br'],
  [u'idea', u'bomb'],
  [u'hour', u'film'],
  [u'string'],
  [u'idea', u'lot', u'acting'],
  [u'cop', u'memory'],
  [u'event', u'girl', u'theatre']],
 [[u'movie'],
  [u'character', u'bit', u'plot'],
  [u'life', u'character', u'half', u'hour', u'finish'],
  [u'reference',
   u'theme',
   u'resolution',
   u'portion',
   u'population',
   u'portion'],
  [u'person',
   u'movie',
   u'self',
   u'imitation',
   u'seinfeld',
   u'episode.<br',
   u'time'],
  [u'reading', u'<br']],
 [[u'success',
   u'sequel',
   u'surprise',
   u'glut',
   u'movie',
   u'guy',
   u'place',
   u'time',
   u'concept'],
  [u'mountain',
   u'time',
   u'mom',
   u'career.<br',
   u'nit-picker',
   u'dream',
   u'expert',
   u'mountain',
   u'base-jumping',
   u'aviation',
   u'expression',
   u'skill'],
  [u'excuse', u'film', u'pile', u'junk'],
  [u'nonsense',
   u'romp',
   u'plenty',
   u'thrill',
   u'plenty',
   u'laughs.<br',
   u'sneery',
   u'evilness',
   u'tick',
   u'box',
   u'band',
   u'baddy',
   u'turncoat',
   u'agent',
   u'portrait',
   u'performance',
   u'shrieking',
   u'disbelief',
   u'captor',
   u'man',
   u'anybody',
   u'character',
   u'girl',
   u'plummet',
   u'actor',
   u'guy',
   u'cropper',
   u'bit',
   u'kicking.<br',
   u'judgement',
   u'expectation',
   u'volume',
   u'enjoy']],
 [[u'minute', u'art', u'film', u'person', u'baying', u'half-ass-ed', u'blood'],
  [u'art', u'house', u'cinema', u'unknown', u'cult'],
  [u'explain',
   u'point',
   u'purpose',
   u'message',
   u'film.<br',
   u'film',
   u'montage',
   u'legend',
   u'level',
   u'co-incidence'],
  [u'nutshell',
   u'hour',
   u'pain',
   u'child',
   u'game',
   u'host',
   u'lung',
   u'cancer',
   u'thing',
   u'daughter',
   u'child',
   u'police',
   u'officer',
   u'relationship',
   u'issue',
   u'star',
   u'contestant',
   u'child',
   u'prodigy',
   u'fate',
   u'game',
   u'contestant',
   u'homosexual',
   u'love',
   u'bartender',
   u'brace',
   u'need',
   u'money',
   u'surgery',
   u'game',
   u'producer',
   u'lung',
   u'cancer',
   u'male',
   u'nurse',
   u'son',
   u'year',
   u'self',
   u'help',
   u'guru',
   u'producer',
   u'wife',
   u'guilt',
   u'pang',
   u'man',
   u'rain',
   u'frog'],
  [u'rambling',
   u'monologue',
   u'character',
   u'fly',
   u'rhyme',
   u'reason',
   u'film',
   u'hour',
   u'epic'],
  [u'<br', u'job', u'movie', u'turn', u'thing', u'sentence']],
 [[u'world', u'person'],
  [u'person'],
  [u'intelligence', u'cat'],
  [u'film'],
  [u'film', u'crap']],
 [[u'comedian', u'cause', u'movement', u'facial', u'performance', u'human'],
  [u'loser', u'hero', u'day', u'man', u'case', u'man'],
  [u'day', u'life', u'instinct'],
  [u'course', u'female', u'character', u'trying'],
  [u'character'],
  [u'character', u'destiny', u'metaphor'],
  [u'instinct', u'situation'],
  [u'performance'],
  [u'movie', u'moment', u'movie', u'fun'],
  [u'monkey', u'style', u'comedy', u'movie'],
  [u'comedian', u'movie']],
 [[u'movie', u'laugh'],
  [u'movie',
   u'moment',
   u'humour',
   u'joke',
   u'shame',
   u'age',
   u'group',
   u'movie',
   u'viewer',
   u'boundary']],
 [[u'girl', u'guy'], [u'movie'], [u'joke']],
 [[u'comedy\x85.man', u'life', u'organ'],
  [u'sore', u'leg', u'makeup', u'face']],
 [[u'movie'],
  [u'flick', u'placement', u'pg-13', u'kid'],
  [u'joke', u'joke', u'act', u'boundary', u'taste', u'decency'],
  [u'scene', u'pg-13', u'rating', u'splash', u'film'],
  [u'waste', u'time', u'movie', u'lover', u'shot'],
  [u'minute', u'movie', u'boy'],
  [u'rest', u'quagmire', u'trap', u'rental'],
  [u'star', u'freebie', u'greenback', u'tripe']],
 [[u'movie'],
  [u'premise', u'libido', u'randy', u'laugh'],
  [u'movie'],
  [u'example',
   u'character',
   u'pass',
   u'goat',
   u'heat',
   u'middle',
   u'farmer',
   u'yard',
   u'border',
   u'obscenity'],
  [u'bestiality', u'film', u'level', u'dog'],
  [u'character', u'everytime'],
  [u'cliche.<br', u'role'],
  [u'actor', u'material', u'quality'],
  [u'half', u'lead', u'count', u'number', u'animal', u'character', u'lead'],
  [u'<br', u'film', u'material']],
 [[u'movie'],
  [u'joke'],
  [u'movie'],
  [u'line', u'time', u'movie'],
  [u'way', u'end'],
  [u'theater',
   u'movie',
   u'forever.<br',
   u'writer',
   u'co-producer',
   u'film',
   u'tv',
   u'writer',
   u'movie']],
 [[u'interview', u'character', u'film'],
  [u'comedy', u'volume', u'movie'],
  [u'thing',
   u'thought',
   u'disaster',
   u'disappointment',
   u'performance',
   u'story',
   u'mange',
   u'loser',
   u'cop',
   u'bunch',
   u'transplant',
   u'car',
   u'accident',
   u'scientist',
   u'type',
   u'result',
   u'control',
   u'instinct'],
  [u'course', u'habit', u'eating', u'person', u'cow', u'goat', u'price'],
  [u'actor'],
  [u'commander',
   u'polouse',
   u'character',
   u'doctor',
   u'character',
   u'tv',
   u'series',
   u'scrub'],
  [u'look', u'job', u'movie'],
  [u'course', u'fame', u'contestant', u'survivor', u'button'],
  [u'talent', u'actress'],
  [u'guy'],
  [u'cameo',
   u'end',
   u'producer',
   u'this.)<br',
   u'mange',
   u'toy',
   u'police',
   u'car',
   u'scene',
   u'talent']],
 [[u'credibility',
   u'action',
   u'movie',
   u'superhero',
   u'string',
   u'feat',
   u'process',
   u'lightning',
   u'speed',
   u'gadget',
   u'weapon',
   u'exception'],
  [u'movie',
   u'asset',
   u'scenery',
   u'effect',
   u'minute',
   u'tone',
   u'film',
   u'score',
   u'attempt',
   u'levity',
   u'tension',
   u'cast',
   u'hero',
   u'star',
   u'cowriter',
   u'lion',
   u'share',
   u'footage',
   u'ground',
   u'heroin',
   u'bunch',
   u'villain',
   u'entertainment',
   u'credibility.as',
   u'film',
   u'kind',
   u'movie',
   u'enjoy',
   u'mistake']],
 [[u'movie', u'sex', u'joke', u'racism', u'humor', u'money'],
  [u'hour', u'drink', u'carton', u'milk'],
  [u'movie']],
 [[u'case'],
  [u'individual', u'acting', u'fine', u'waste'],
  [u'kind', u'way'],
  [u'thing',
   u'attention',
   u'ordeal',
   u'joke',
   u'female',
   u'movie',
   u'case',
   u'nook',
   u'case',
   u'redemption'],
  [u'couple',
   u'notch',
   u'movie!<br',
   u'money',
   u'this.<br',
   u'purchase',
   u'no!<br',
   u'sense',
   u'humor']],
 [[u'ingredient', u'cop', u'dream'],
  [u'luck', u'change', u'car', u'crush(a', u'doctor'],
  [u'doctor', u'organ'],
  [u'moment', u'behaviour', u'cop'],
  [u'time', u'change', u'instinct'],
  [u'time', u'girl', u'try', u'gentleman'],
  [u'fun'],
  [u'person', u'loser.(see', u'movie', u'goat'],
  [u'movie', u'problem', u'script', u'viewer', u'feel'],
  [u'movie'],
  [u'film', u'box', u'office'],
  [u'animal', u'film', u'date']],
 [[u'schmo', u'life', u'life', u'lesson', u'way'],
  [u'formula'],
  [u'way', u'film'],
  [u'hit', u'liar', u'liar'],
  [u'line', u'male', u'animal'],
  [u'plot',
   u'sarcasm',
   u'cop',
   u'accident',
   u'surgery',
   u'veterinarian',
   u'load',
   u'whinny',
   u'horse',
   u'time',
   u'cheetah',
   u'movie',
   u'schneider-starring',
   u'flick',
   u'same-plot',
   u'follow-up',
   u'chick',
   u'audience',
   u'reality',
   u'tv',
   u'star',
   u'lead',
   u'survivor',
   u'cameo'],
  [u'scene'],
  [u'production', u'value'],
  [u'review', u'reference', u'movie', u'movie', u'line', u'way']],
 [[u'film',
   u'housewife',
   u'kerchief',
   u'housedress',
   u'mule',
   u'afternoon',
   u'couch',
   u'eating',
   u'bonbon'],
  [u'fact',
   u'bonbon',
   u'role',
   u'movie.<br',
   u'reason',
   u'end',
   u'gaze',
   u'face',
   u'scene'],
  [u'film', u'look'],
  [u'action', u'hand', u'emotionality'],
  [u'<br', u'dialog', u'wood'],
  [u'bodice', u'hero'],
  [u'family', u'cliche', u'hill'],
  [u'story.<br', u'title', u'movie'],
  [u'grape', u'paragon', u'food', u'ad'],
  [u'art',
   u'director',
   u'paint',
   u'dollar',
   u'canvase',
   u'cottage',
   u'fuchsias'],
  [u'film', u'glass'],
  [u'sky', u'film'],
  [u'bonbon']],
 [[u'film',
   u'depth',
   u'term',
   u'story',
   u'telling.<br',
   u'story',
   u'event',
   u'action',
   u'suspense.<br',
   u'lead',
   u'scope',
   u'flex',
   u'muscle',
   u'cast.<br',
   u'story',
   u'title',
   u'character',
   u'film',
   u'injustice',
   u'impact',
   u'motivation',
   u'welfare.<br',
   u'attempt',
   u'emotion',
   u'boy',
   u'outside',
   u'hero',
   u'film']],
 [[u'movie', u'story.<br', u'notorius', u'liar', u'murder'],
  [u'offer', u'lie', u'test'],
  [u'lot', u'person', u'life', u'prison', u'black'],
  [u'story?<br']],
 [[u'year',
   u'movie',
   u'box',
   u'movie',
   u'alot',
   u'respect',
   u'movie',
   u'song']],
 [[u'thing', u'movie.<br', u'stage', u'movie'],
  [u'dramatization',
   u'suspension',
   u'disbelieve.<br',
   u'course',
   u'injustice',
   u'anger',
   u'movie',
   u'viewer']],
 [[u'movie', u'hype', u'person', u'job'],
  [u'person', u'anger', u'community'],
  [u'complaint', u'american'],
  [u'best', u'actress', u'movie', u'best', u'picture'],
  [u'reason',
   u'movie',
   u'way',
   u'person',
   u'movie',
   u'hardship',
   u'time',
   u'period',
   u'masterpiece.<br',
   u'actor',
   u'role',
   u'movie'],
  [u'movie', u'acting', u'role'],
  [u'movie',
   u'man',
   u'saint',
   u'infidelity',
   u'wife',
   u'aggression',
   u'man',
   u'wife',
   u'point',
   u'view'],
  [u'movie', u'interpretation', u'story'],
  [u'past', u'bit', u'assumption', u'man'],
  [u'fact', u'movie'],
  [u'cast',
   u'person',
   u'face',
   u'persona',
   u'up.<br',
   u'movie',
   u'version',
   u'story'],
  [u'acting', u'cast', u'attitude']],
 [[u'selection', u'protagonist', u'sort', u'person', u'aura', u'character'],
  [u'series',
   u'notion.<br',
   u'opening',
   u'scene',
   u'audience',
   u'thrill',
   u'suspense',
   u'intrigue',
   u'encounter',
   u'outlaw'],
  [u'heist',
   u'altitude',
   u'transfer',
   u'cash',
   u'suit',
   u'case',
   u'plane',
   u'before.<br',
   u'cold',
   u'snow',
   u'deceit',
   u'treachery',
   u'antagonist',
   u'force',
   u'shiver',
   u'trepidation'],
  [u'force',
   u'adventure',
   u'murder',
   u'drama',
   u'end.<br',
   u'movie',
   u'year',
   u'person',
   u'feast',
   u'eye'],
  [u'language', u'excitement', u'scene', u'movie', u'appeal', u'year']],
 [[u'movie', u'character', u'movie'],
  [u'fact',
   u'number',
   u'contender',
   u'time',
   u'murder',
   u'proof',
   u'friend',
   u'child',
   u'molester',
   u'youth',
   u'fact',
   u'decision',
   u'judge',
   u'fight',
   u'tape'],
  [u'need', u'hero', u'trouble', u'trouble', u'person', u'time', u'woman'],
  [u'need', u'hero', u'truth', u'bio', u'pic'],
  [u'inaccuracy', u'movie']],
 [[u'movie',
   u'humor',
   u'story',
   u'underdog',
   u'character',
   u'loudmouth',
   u'thing',
   u'movie',
   u'title',
   u'anybody',
   u'racist',
   u'pc',
   u'police'],
  [u'<br',
   u'guy',
   u'basketball',
   u'player',
   u'counterpart',
   u'lot',
   u'line',
   u'humor'],
  [u'film', u'lot', u'person', u'profanity', u'sleaziness', u'character'],
  [u'person', u'movie'],
  [u'reason', u'film', u'friend', u'profanity']],
 [[u'lot', u'room', u'comedy', u'story'],
  [u'event', u'place', u'minute', u'attempt', u'film'],
  [u'movie', u'second'],
  [u'character', u'movie'],
  [u'performance', u'conclusion', u'country', u'hick'],
  [u'acting', u'movie'],
  [u'actor', u'film'],
  [u'movie',
   u'reason',
   u'work',
   u'career',
   u'character',
   u'speaking',
   u'line'],
  [u'jump', u'character', u'line', u'audience', u'voice'],
  [u'film', u'term', u'hearing', u'man']],
 [[u'movie',
   u'highlight',
   u'moment',
   u'jeopardy!".<br',
   u'saddest',
   u'thing',
   u'jump',
   u'potential'],
  [u'year', u'area', u'film', u'tension', u'basketball', u'meant'],
  [u'film',
   u'member',
   u'basketball',
   u'culture',
   u'acting',
   u'script',
   u'movie',
   u'sequence',
   u'event'],
  [u'story',
   u'climax',
   u'kind',
   u'climax',
   u'sequence',
   u'repetition',
   u'case',
   u'win',
   u'money',
   u'game',
   u'basketball").<br',
   u'order',
   u'plot',
   u'dilemma',
   u'dilemma',
   u'film'],
  [u'change', u'pace', u'sport', u'movie'],
  [u'money', u'rent', u'apartment.<br', u'jump', u'film'],
  [u'sport', u'fan', u'writing', u'scene', u'basketball'],
  [u'role'],
  [u'cast', u'actor', u'basketball', u'theme', u'movie'],
  [u'so.<br', u'movie', u'star', u'star']],
 [[u'film'],
  [u'collection', u'clich', u'time'],
  [u'theatre', u'minute', u'search', u'drink', u'nerve'],
  [u'hurt', u'expression', u'person'],
  [u'movie', u'stereotype'],
  [u'music', u'teacher', u'kid', u'violin', u'neighbourhood', u'school'],
  [u'kid'],
  [u'suit', u'script'],
  [u'horror']],
 [[u'movie', u'preview', u'film'],
  [u'picture'],
  [u'theatre', u'film'],
  [u'story', u'need', u'half', u'picture']],
 [[u'kind', u'saccharine'],
  [u'sentiment'],
  [u'finish', u'orchestration', u'jumper', u'cable', u'car', u'film'],
  [u'story',
   u'set-up',
   u'execution',
   u'performance',
   u'tv',
   u'movie',
   u'school',
   u'drama']],
 [[u'libre',
   u'<br',
   u'pg-13',
   u'action',
   u'humor',
   u'dialog',
   u'<br',
   u'person',
   u'end',
   u'movie',
   u'brick',
   u'wall',
   u'movie'],
  [u'man', u'time', u'audience', u'worship'],
  [u'writer',
   u'director',
   u'movie',
   u'spanish',
   u'friar',
   u'wrestler',
   u'orphanage'],
  [u'reservation', u'plot'],
  [u'reservation', u'downfall', u'movie'],
  [u'plot', u'skit', u'tv'],
  [u'plot',
   u'run',
   u'half',
   u'hour',
   u'runtime',
   u'comedy',
   u'monastery',
   u'man'],
  [u'monastery', u'monastery', u'cook', u'dream', u'wrestler'],
  [u'monastery',
   u'finance',
   u'wresting',
   u'tournament',
   u'prize',
   u'money',
   u'food',
   u'monastery',
   u'orphanage'],
  [u'plot', u'sound', u'caring'],
  [u'movie'],
  [u'displeasure', u'plot', u'humor', u'heart', u'movie'],
  [u'way',
   u'audience',
   u'fart',
   u'joke',
   u'humor\x85of',
   u'course',
   u'teenager',
   u'movie'],
  [u'woman',
   u'scurry',
   u'mouse',
   u'floor',
   u'person',
   u'laugh',
   u'award',
   u'movie'],
  [u'joke.<br', u'performance', u'libre'],
  [u'line', u'paper'],
  [u'reguera', u'woman', u'eyesight'],
  [u'partner'],
  [u'job', u'line'],
  [u'sub-par', u'movie.<br', u'libre'],
  [u'heart', u'humor', u'joke'],
  [u'libre', u'cast'],
  [u'cast', u'lack', u'word'],
  [u'chemistry', u'life', u'script'],
  [u'entirety', u'movie', u'libre'],
  [u'libre', u'movie', u'cast'],
  [u'reason', u'work'],
  [u'follow-up']],
 [[u'character.this',
   u'movie',
   u'year',
   u'olds.do',
   u'lines?ana',
   u'reguera',
   u'fine',
   u'nun',
   u'advance',
   u'movie',
   u'version',
   u'indie',
   u'film.i',
   u'movie',
   u'courage',
   u'movie'],
  [u'rudeness:jack'],
  [u'person',
   u'emissary',
   u'culture',
   u'culture',
   u'venue',
   u'guy',
   u'here.<br',
   u'imdb',
   u'review.has',
   u'review',
   u'question']],
 [[u'movie'],
  [u'time', u'life', u'movie'],
  [u'trailer'],
  [u'writing'],
  [u'stereotype', u'person'],
  [u'movie', u'eternity'],
  [u'person', u'theater'],
  [u'husband', u'stay']],
 [[u'movie'],
  [u'end', u'edge', u'seat', u'movie'],
  [u'appearance'],
  [u'performance',
   u'villain.<br',
   u'fact',
   u'movie',
   u'place',
   u'mountain',
   u'lot',
   u'guy',
   u'way',
   u'lot',
   u'action']],
 [[u'disappointment!<br',
   u'film',
   u'edge',
   u'comedy',
   u'direction',
   u'script',
   u'film',
   u'tradition'],
  [u'acting', u'self-regarding', u'character'],
  [u'soundtrack'],
  [u'fan', u'titter', u'duration'],
  [u'mistake?<br', u'film', u'review', u'script', u'signing', u'drivel']],
 [[u'sense', u'humor', u'movie'],
  [u'preview', u'movie', u'<br', u'time', u'line', u'movie'],
  [u'actor', u'role', u'attempt'],
  [u'movie', u'men', u'parts!!<br', u'piece', u'garbage<br']],
 [[u'recess', u'character'],
  [u'jack',
   u'whale',
   u'time',
   u'hammin',
   u'friar',
   u'dream',
   u'wrestler',
   u'movie',
   u'total',
   u'misfire',
   u'department.<br',
   u'movie',
   u'thinking',
   u'guy'],
  [u'script', u'character', u'naff', u'acting', u'direction'],
  [u'moment'],
  [u'minute'],
  [u'minute',
   u'aneurism',
   u'painful.<br',
   u'remember',
   u'year',
   u'actor',
   u'pap',
   u'actor',
   u'load',
   u'plop'],
  [u'that.<br', u'movie', u'man'],
  [u'to.<br', u'clich\xe9', u'movie', u'reason']],
 [[u'breathing',
   u'movie',
   u'<br',
   u'direction',
   u'writing',
   u'lack',
   u'plot',
   u'mugging',
   u'camera',
   u'shot',
   u'joke',
   u'batting',
   u'average',
   u'waste',
   u'time'],
  [u'idea', u'lack', u'comedy', u'direction', u'you-tube.<br', u'film'],
  [u'doubt', u'movie', u'racist'],
  [u'result', u'team', u'mess'],
  [u'camera'],
  [u'love', u'thing', u'racism', u'charge'],
  [u'money', u'time', u'pile', u'bean']],
 [[u'priest',
   u'wrestler',
   u'orphanage',
   u'<br',
   u'movie',
   u'non-wwf',
   u'wrestling'],
  [u'brain', u'role'],
  [u'thing', u'foil', u'character'],
  [u'ham-it-up', u'knockabout', u'guy', u'fat', u'thing'],
  [u'thing']],
 [[u'labour', u'love'],
  [u'epic', u'score', u'mixture', u'style', u'editing', u'cinematography'],
  [u'movie', u'reference', u'pulp', u'novel', u'serial', u'film', u'stood'],
  [u'film', u'reason', u'labour', u'love', u'screen', u'world', u'movie'],
  [u'tension', u'atmosphere', u'offer', u'battle', u'dinosaur', u'set-piece'],
  [u'element'],
  [u'way',
   u'thing',
   u'element',
   u'green-screen',
   u'game',
   u'half',
   u'time',
   u'actor'],
  [u'actor', u'script', u'sort'],
  [u'experience', u'nostalgia', u'feel', u'step', u'world', u'yesterday']],
 [[u'game', u'performer'],
  [u'visial', u'movie'],
  [u'visual', u'thing', u'sky', u'minute', u'movie', u'time'],
  [u'movie', u'degree'],
  [u'movie', u'walking', u'life.<br'],
  [u'performer'],
  [u'movie', u'title', u'role'],
  [u'watch', u'law', u'again.<br', u'face'],
  [u'story'],
  [u'effect', u'story', u'suffer'],
  [u'deal.<br', u'movie']],
 [[u'movie', u'month', u'preview'],
  [u'process', u'movie'],
  [u'actor', u'choice', u'past', u'mark'],
  [u'aspect', u'preview', u'waste', u'time'],
  [u'shot', u'idea', u'idea'],
  [u'movie', u'need', u'opinion', u'movie']],
 [[u'movie', u'idea', u'movie', u'point', u'view', u'1900', u'future'],
  [u'idea',
   u'lack',
   u'story',
   u'character',
   u'disbelief',
   u'idea',
   u'movie',
   u'actor',
   u'screen'],
  [u'graphic',
   u'person',
   u'softening',
   u'crutch',
   u'edge',
   u'problem',
   u'screening'],
  [u'color', u'effect', u'quality'],
  [u'graphic', u'bar', u'graphic', u'graphic'],
  [u'model', u'robot', u'plain', u'uncompelling'],
  [u'bunch',
   u'weirdo',
   u'prehistoric-like',
   u'animal',
   u'island',
   u'story',
   u'belief'],
  [u'relationship', u'movie', u'distrust', u'deception'],
  [u'way', u'plane', u'person', u'reason'],
  [u'hero'],
  [u'screen', u'time'],
  [u'vault',
   u'operation',
   u'hole',
   u'character',
   u'fall',
   u'character',
   u'robot'],
  [u'hell', u'vial', u'guy', u'vial'],
  [u'source', u'fbi-style', u'file'],
  [u'spot', u'map', u'area', u'hell', u'map', u'blank', u'spot'],
  [u'point',
   u'clothe',
   u'clothe',
   u'clothe',
   u'dress',
   u'line',
   u'continuity',
   u'clothe'],
  [u'brain', u'crap?<br', u'music', u'screen.<br'],
  [u'bunch', u'accent'],
  [u'character'],
  [u'dialogue', u'movie', u'line'],
  [u'person',
   u'hero',
   u'kind',
   u'person',
   u'misfortune',
   u'life.<br',
   u'movie',
   u'rating']],
 [[u'robot', u'horde', u'city', u'madman', u'attack'],
  [u'ace',
   u'skyway',
   u'odd',
   u'reporter',
   u'ex-girlfriend',
   u'flight',
   u'partner',
   u'tomorrow',
   u'movie',
   u'underwhelming'],
  [u'visual', u'film', u'job'],
  [u'visual'],
  [u'film', u'story', u'character', u'thing'],
  [u'visual', u'time', u'story'],
  [u'movie', u'girl', u'personality', u'kind'],
  [u'girl', u'personality'],
  [u'case', u'style', u'substance.<br', u'fault'],
  [u'reason', u'movie'],
  [u'advertising', u'film', u'minute'],
  [u'performance'],
  [u'performance', u'lot'],
  [u'performance', u'woman', u'character', u'film.<br', u'movie', u'bust'],
  [u'scene'],
  [u'film', u'hook'],
  [u'film', u'premise'],
  [u'end']],
 [[u'movie'],
  [u'problem', u'movie', u'reaction', u'minute'],
  [u'love', u'story', u'ye'],
  [u'love', u'story'],
  [u'movie', u'enjoy', u'story', u'fantasy'],
  [u'complaint', u'actor'],
  [u'actor'],
  [u'actor', u'movie'],
  [u'role',
   u'character',
   u'bit',
   u'person',
   u'movie',
   u'romance',
   u'history',
   u'movie',
   u'movie',
   u'thing'],
  [u'person', u'movie', u'action', u'movie'],
  [u'movie',
   u'genre',
   u'movie.<br',
   u'movie',
   u'trilogy.<br',
   u'writing',
   u'movie'],
  [u'flashback',
   u'portion',
   u'story',
   u'time',
   u'achievement',
   u'feel',
   u'lot',
   u'person',
   u'movie',
   u'idea',
   u'love',
   u'story',
   u'movie',
   u'constructed.<br',
   u'book',
   u'memoir',
   u'day',
   u'movie',
   u'fault'],
  [u'piping',
   u'copper',
   u'steel',
   u'iceberg',
   u'scene',
   u'movie',
   u'romance',
   u'movie',
   u'achievement',
   u'feeling',
   u'adaptation',
   u'event']],
 [[u'action',
   u'crime',
   u'adventure',
   u'flaw',
   u'director',
   u'movie',
   u'expert',
   u'climber',
   u'hostage',
   u'friend',
   u'gang',
   u'criminal',
   u'search',
   u'suit',
   u'case',
   u'cash'],
  [u'climber', u'action', u'sequence', u'border', u'line'],
  [u'sake', u'film', u'disbelief'],
  [u'rest', u'cast', u'character', u'movie'],
  [u'action', u'sequence', u'matter'],
  [u'sequence',
   u'film',
   u'studio',
   u'location',
   u'view',
   u'mountain',
   u'range',
   u'touch',
   u'reality',
   u'movie'],
  [u'death', u'sort'],
  [u'villain'],
  [u'movie', u'slow'],
  [u'fan', u'harlin', u'chance'],
  [u'character',
   u'development',
   u'action',
   u'drama',
   u'suspense',
   u'excitement',
   u'thrill',
   u'performance',
   u'cast',
   u'movie',
   u'time']],
 [[u'theater', u'film'],
  [u'review',
   u'movie',
   u'effect',
   u'preview',
   u'disappointment',
   u'feeling',
   u'film'],
  [u'boring', u'reason', u'film', u'star', u'film', u'source'],
  [u'concept',
   u'film',
   u'spin',
   u'concept',
   u'rehash',
   u'pulp-era',
   u'robot',
   u'cartoon',
   u'film',
   u'giant',
   u'artist',
   u'minion',
   u'villain',
   u'film',
   u'year',
   u'subject',
   u'film',
   u'performance'],
  [u'movie', u'blue-screen', u'computer', u'imagery', u'actor'],
  [u'excuse', u'acting'],
  [u'person',
   u'child',
   u'lack',
   u'reference',
   u'excuse',
   u'trying.<br',
   u'humanity',
   u'film'],
  [u'protagonist'],
  [u'antagonist', u'robot', u'number', u'character', u'film', u'hand'],
  [u'robot', u'planet', u'mass', u'humanity'],
  [u'performance', u'character', u'here.<br', u'film', u'movie'],
  [u'film',
   u'example',
   u'action',
   u'film',
   u'filmmaker',
   u'movie',
   u'effect',
   u'vision',
   u'originality',
   u'kind']],
 [[u'zeppelin', u'present', u'metaphor', u'movie'],
  [u'cult'],
  [u'adventure',
   u'action',
   u'flick',
   u'use',
   u'computer',
   u'animation',
   u'scene'],
  [u'explosion', u'dogfight', u'scene', u'moment', u'character'],
  [u'groundbreaking',
   u'film',
   u'computer',
   u'imagery',
   u'actor',
   u'setting',
   u'flop',
   u'requirement',
   u'flick'],
  [u'quite', u'graphic'],
  [u'movement', u'car', u'physics', u'aircraft', u'dogfight'],
  [u'way'],
  [u'infant', u'car', u'road', u'train'],
  [u'voice', u'protest', u'film', u'reality'],
  [u'standard',
   u'actor',
   u'starship',
   u'trooper',
   u'standard',
   u'science',
   u'fiction',
   u'film',
   u'job',
   u'decade',
   u'film',
   u'portfolio',
   u'picture'],
  [u'film', u'sentence'],
  [u'acting']],
 [[u'lot', u'viewer', u'school', u'movie', u'movie'],
  [u'movie', u'character'],
  [u'movie', u'mix', u'future', u'mix', u'movie', u'effect'],
  [u'screen', u'actor'],
  [u'movie', u'movie', u'reason', u'critic', u'hype', u'movie', u'movie'],
  [u'story', u'line'],
  [u'movie', u'actors', u'movie', u'movie'],
  [u'everybody', u'script', u'print', u'computer'],
  [u'movie', u'movie', u'network', u'movie']],
 [[u'visual', u'lot', u'talent', u'effect', u'artwork'],
  [u'it.<br', u'color', u'sort', u'thing', u'time', u'movie'],
  [u'hat-tip', u'movie'],
  [u'problem',
   u'that.<br',
   u'movie',
   u'story',
   u'line',
   u'script',
   u'movie',
   u'character'],
  [u'scene']],
 [[u'film', u'time'],
  [u'tomorrow',
   u'cinematography',
   u'computer',
   u'graphic',
   u'design',
   u'world'],
  [u'movie', u'attack', u'army', u'generator', u'reason'],
  [u'disappearance', u'mind'],
  [u'leap',
   u'faith',
   u'wisecracking',
   u'reporter',
   u'girlfriend',
   u'lead',
   u'wing',
   u'trusty',
   u'sidekick'],
  [u'plot', u'film'],
  [u'film', u'feeling', u'film', u'serial', u'yesteryear'],
  [u'story', u'budget', u'film'],
  [u'dark', u'look', u'film', u'end', u'life'],
  [u'story'],
  [u'portrayal'],
  [u'paltrow'],
  [u'law', u'tradition', u'shoulder'],
  [u'thing', u'promise']],
 [[u'computer', u'game', u'focus', u'computer'],
  [u'person', u'set', u'location', u'use', u'film']],
 [[u'movie'],
  [u'effect',
   u'a-list',
   u'racing',
   u'storyline',
   u'movie',
   u'term',
   u'course.<br',
   u'accent',
   u'plenty',
   u'smirk',
   u'delivery',
   u'look',
   u'movie',
   u'stone',
   u'dialogue'],
  [u'boy', u'time', u'guy'],
  [u'comment', u'minute', u'movie'],
  [u'effort', u'book', u'heroine'],
  [u'example', u'character', u'flick'],
  [u'movie', u'grace', u'film'],
  [u'eyepatch'],
  [u'scene',
   u'actor',
   u'material',
   u'performance',
   u'castmates.<br',
   u'plot',
   u'story',
   u'progression',
   u'combination',
   u'scene',
   u'action',
   u'movie',
   u'year'],
  [u'pace',
   u'half',
   u'movie',
   u'snail',
   u'pace',
   u'audience',
   u'time',
   u'conclusion',
   u'film',
   u'villain'],
  [u'pairing', u'clich\xe9d', u'year', u'separation', u'romance', u'story'],
  [u'term',
   u'feeling',
   u'end',
   u'film',
   u'director',
   u'skintight',
   u'vinyl',
   u'entirety',
   u'film',
   u'tone',
   u'coloration'],
  [u'element', u'movie', u'face']],
 [[u'homage',
   u'book',
   u'pulp',
   u'adventure',
   u'movie',
   u'serial',
   u'magic',
   u'genre'],
  [u'expectation', u'films,fiction', u'serial', u'tribute'],
  [u'film', u'charm', u'attraction'],
  [u'time', u'conversation', u'contemplation', u'foe', u'second', u'tragedy'],
  [u'course',
   u'convention',
   u'director',
   u'sense',
   u'urgency.<br',
   u'film',
   u'sense'],
  [u'fun', u'sense', u'logic'],
  [u'law', u'paltrow', u'creature', u'chasm', u'log', u'bridge'],
  [u'creature'],
  [u'bridge', u'escape'],
  [u'land',
   u'chasm',
   u'creature',
   u'film',
   u'effort',
   u'if.<br',
   u'paltrow',
   u'fine',
   u'performance',
   u'past',
   u'type'],
  [u'nuance', u'oomph', u'role', u'chance'],
  [u'job', u'film', u'way', u'distract'],
  [u'creature', u'nature'],
  [u'location'],
  [u'sense', u'wonder'],
  [u'mountain', u'stateliness', u'sense', u'awe', u'foreboding', u'mountain'],
  [u'design', u'film', u'way'],
  [u'<br', u'script', u'homage', u'excuse'],
  [u'movie', u'thrill', u'tension'],
  [u'day',
   u'week',
   u'fan',
   u'viewer',
   u'world',
   u'rule',
   u'way',
   u'way',
   u'not.<br',
   u'approach',
   u'film',
   u'book',
   u'hero',
   u'flash',
   u'treatment'],
  [u'character', u'character', u'film']],
 [[u'originality', u'department'],
  [u'excercise', u'technique', u'battle'],
  [u'charisma', u'toast', u'defense', u'film', u'dialogue', u'screen'],
  [u'fact',
   u'script',
   u'film',
   u'work',
   u'dog',
   u'moment',
   u'scream',
   u'bluescreen'],
  [u'paltrow'],
  [u'film', u'dialogue', u'camp'],
  [u'complaint', u'technique', u'film', u'computer'],
  [u'clich\xe9', u'mess']],
 [[u'tomorrow', u'title', u'movie', u'heart', u'idea'],
  [u'background', u'result', u'thing', u'focus'],
  [u'idea', u'gob', u'gob', u'gob', u'bit', u'movie', u'serial']],
 [[u'drawing'],
  [u'terrorists', u'kid', u'resilience', u'ice-cold', u'weather', u'dialog'],
  [u'guy', u'use', u'tango-tango'],
  [u'film', u'suspense', u'action-sequence', u'setting'],
  [u'ye', u'humour.<br', u'film', u'banter', u'character', u'time'],
  [u'dialog', u'action'],
  [u'<br', u'exchange', u'time', u'chuckle', u'viewer'],
  [u'display', u'dialog-writing', u'witness', u'hijack', u'airplane'],
  [u'action', u'absurdity', u'fun'],
  [u'rest', u'action', u'fun', u'airplane', u'scene', u'highlight', u'film'],
  [u'case', u'money', u'clothe', u'equipment'],
  [u'gangster', u'reason', u'doubt'],
  [u'guy', u'snicker', u'manner'],
  [u'writer',
   u'mass',
   u'execution',
   u'school',
   u'child',
   u'evilness',
   u'guy',
   u'guy',
   u'chopper',
   u'hell',
   u'fall',
   u'trap'],
  [u'bunch', u'exchange', u'place', u'honour', u'line'],
  [u'football', u'body'],
  [u'script']],
 [[u'problem', u'lead'],
  [u'<br', u'visual', u'scene'],
  [u'action',
   u'sequence',
   u'film',
   u'drama',
   u'sense',
   u'danger.<br',
   u'film',
   u'script',
   u'director'],
  [u'<br', u'film'],
  [u'critic', u'film', u'level']],
 [[u'downright', u'movie', u'acting', u'director'],
  [u'cliffhanger', u'attempt', u'flash', u'waste', u'money'],
  [u'screen', u'screen', u'test'],
  [u'advice', u'dog'],
  [u'screen', u'effect', u'shot', u'movie'],
  [u'let', u'actor', u'eye'],
  [u'performance', u'school', u'effort'],
  [u'director'],
  [u'thing', u'director', u'work', u'dreck']],
 [[u'scene', u'movie', u'number', u'actor', u'screen'],
  [u'screen', u'extra', u'movie'],
  [u'screen',
   u'action',
   u'scene',
   u'actor',
   u'half',
   u'life',
   u'floor',
   u'mark',
   u'head',
   u'movie'],
  [u'plane', u'person', u'entire', u'world', u'attack', u'person']],
 [[u'reviews',
   u'story',
   u'audience',
   u'smoke',
   u'damn.<br',
   u'director',
   u'eye',
   u'art',
   u'deco',
   u'idea',
   u'background',
   u'wave',
   u'future',
   u'movie'],
  [u'director', u'rendering', u'movie', u'film', u'scene', u'film'],
  [u'villain', u'thing'],
  [u'year', u'time', u'movie', u'place'],
  [u'paltrow',
   u'movie',
   u'reviewer',
   u'comment',
   u'lack',
   u'chemistry',
   u'shot',
   u'camera',
   u'showing',
   u'movie',
   u'year'],
  [u'law', u'time', u'screen', u'movie', u'flaw'],
  [u'audience', u'robot', u'hero', u'villain'],
  [u'story', u'world']],
 [[u'guy', u'dancing', u'movie', u'form', u'dance', u'music', u'movie'],
  [u'plot', u'fight', u'sofa', u'sort', u'weapon', u'scene']],
 [[u'<br', u'brewsky', u'enjoy', u'action', u'flick'],
  [u'kempo', u'skill', u'spin', u'kick', u'stick', u'couch'],
  [u'quality', u'movie', u'acting'],
  [u'plot', u'half'],
  [u'movie', u'art', u'boat'],
  [u'movie', u'place', u'way', u'way', u'actor', u'extra']],
 [[u'plot', u'b-movie', u'fight', u'scene'],
  [u'tv', u'version', u'share', u'moment', u'kiss', u'garden'],
  [u'video', u'version', u'scene'],
  [u'point-of-view', u'film', u'shot']],
 [[u'time', u'message', u'ability', u'story', u'heart', u'genius'],
  [u'hour', u'film', u'story', u'film'],
  [u'struggle', u'choice', u'reason', u'feeling'],
  [u'job', u'film'],
  [u'camera', u'work', u'writing', u'decay', u'film'],
  [u'film', u'film'],
  [u'money', u'film', u'talent.<br', u'film', u'film', u'chance'],
  [u'film'],
  [u'work', u'transformation', u'desire', u'money', u'film'],
  [u'hour', u'sheer', u'brilliance'],
  [u'actor', u'story', u'film', u'man', u'journey', u'unknown'],
  [u'journey', u'life', u'man'],
  [u'actor',
   u'generation',
   u'cinema',
   u'film',
   u'showcase',
   u'talent.<br',
   u'issue',
   u'film',
   u'use',
   u'sister',
   u'love'],
  [u'image', u'sister', u'remorse'],
  [u'blush'],
  [u'couch', u'film', u'voice', u'spelling', u'studio', u'film'],
  [u'remaining', u'story'],
  [u'money', u'film', u'talent'],
  [u'movie', u'explosions.<br', u'scene', u'film', u'end'],
  [u'movie', u'diamond'],
  [u'scene', u'shuffle', u'scene'],
  [u'scene', u'way', u'film'],
  [u'direction', u'character', u'circle', u'chance', u'life'],
  [u'moment', u'rest', u'film', u'rubbish']],
 [[u'thing',
   u'jazz',
   u'bio',
   u'fiction',
   u'happenin',
   u'jazz',
   u'trumpeter',
   u'quintet'],
  [u'problem',
   u'manager',
   u'stage',
   u'sax',
   u'player',
   u'girlfriend',
   u'mattress'],
  [u'love', u'life', u'trumpet', u'music'],
  [u'band',
   u'manager',
   u'gambling',
   u'problem',
   u'negotiator',
   u'club',
   u'owner'],
  [u'undoing',
   u'artist',
   u'growth',
   u'man.<br',
   u'trumpeter',
   u'babe',
   u'arm'],
  [u'guy', u'self', u'art', u'patience', u'key', u'remoteness'],
  [u'sax', u'player', u'role', u'mouth', u'throw', u'scribbling', u'dialogue'],
  [u'giant', u'trifecta', u'performance', u'writing', u'direction'],
  [u'moment', u'cowboy'],
  [u'case',
   u'taxi',
   u'it.<br',
   u'script',
   u'argument',
   u'ribbing',
   u'insult',
   u'editorializing'],
  [u'travesty', u'style'],
  [u'love',
   u'letter',
   u'jazz',
   u'mountain',
   u'memorabilium',
   u'set',
   u'clap',
   u'trap',
   u'passion',
   u'verve'],
  [u'film',
   u'surface',
   u'form',
   u'pain',
   u'addition',
   u'lead',
   u'performance',
   u'deal'],
  [u'buzz'],
  [u'homegrown']],
 [[u'person', u'movie'],
  [u'comedy', u'film'],
  [u'acting', u'comedy', u'passion', u'romance'],
  [u'character', u'coward'],
  [u'lack', u'remorse', u'character', u'finance'],
  [u'thing',
   u'escape',
   u'commitment',
   u'show.<br',
   u'movie',
   u'wedding',
   u'scene',
   u'foot',
   u'potato',
   u'commitment'],
  [u'movie',
   u'person',
   u'character',
   u'commitment',
   u'etc.).<br',
   u'failure',
   u'movie',
   u'lack',
   u'twist',
   u'turn'],
  [u'suspense',
   u'joy',
   u'consequence',
   u'actions.<br',
   u'person',
   u'shoddiness',
   u'movie',
   u'criticism'],
  [u'movie', u'cynicism', u'examination'],
  [u'comedy',
   u'movie',
   u'movie',
   u'heart',
   u'window',
   u'examination',
   u'romance',
   u'today',
   u'society']],
 [[u'theater'],
  [u'time'],
  [u'setting', u'lot', u'storyline', u'town', u'mountain', u'folk', u'hero'],
  [u'villain', u'element'],
  [u'action', u'movie']],
 [[u'movie', u'year', u'brainless', u'piece'],
  [u'message',
   u'level',
   u'sledgehammer',
   u'proceed',
   u'pound',
   u'psyche',
   u'hour',
   u'half',
   u'hour',
   u'half',
   u'life',
   u'thank'],
  [u'character',
   u'movie',
   u'maturity',
   u'level',
   u'fourteen-year-old',
   u'fourteen-year-old'],
  [u'minute',
   u'movie',
   u'character',
   u'silliness',
   u'game',
   u'sensibility',
   u'wind',
   u'friend',
   u'belief'],
  [u'husband',
   u'rockstar',
   u'intelligence',
   u'character',
   u'half',
   u'idiot',
   u'mess'],
  [u'protagonist',
   u'clue',
   u'choice',
   u'life',
   u'puppet',
   u'destiny',
   u'whim',
   u'fate'],
  [u'movie', u'messiness', u'life', u'choice', u'consequence'],
  [u'movie',
   u'hero',
   u'heroine',
   u'havoc',
   u'misery',
   u'person',
   u'life',
   u'fianc\xe9es',
   u'relative',
   u'friend',
   u'there.<br']],
 [[u'story', u'line', u'comedy', u'concept', u'work'],
  [u'man(john', u'drop', u'woman(kate', u'meeting', u'chance', u'wonder'],
  [u'place', u'love'],
  [u'scene', u'ground', u'snow'],
  [u'finale'],
  [u'role', u'hell'],
  [u'role'],
  [u'hand']],
 [[u'<br', u'movie', u'comic-hero-movie'],
  [u'actor', u'actor', u'world', u'script'],
  [u'kid', u'age', u'film'],
  [u'thing', u'computeranimation']],
 [[u'movie', u'night', u'girlfriend', u'friend', u'view', u'liberal'],
  [u'movie', u'mass', u'opponent', u'antagonist'],
  [u'statement', u'end.<br', u'plot', u'president', u'lobbyist'],
  [u'entertaining', u'plot'],
  [u'movie', u'infomercial'],
  [u'movie',
   u'gun',
   u'control',
   u'issue',
   u'relationship',
   u'premise',
   u'movie',
   u'character',
   u'figure',
   u'lobbyist'],
  [u'awe'],
  [u'sale', u'glass', u'water', u'man', u'thirst.<br', u'wing', u'fanatic'],
  [u'man', u'wing', u'ideologue'],
  [u'character', u'possible.<br', u'speech', u'end'],
  [u'line', u'card', u'member', u'joke'],
  [u'president', u'member', u'fringe', u'group'],
  [u'movie', u'audience', u'plot'],
  [u'choice', u'president'],
  [u'movie',
   u'movie',
   u'wing',
   u'statement',
   u'movie',
   u'failed.<br',
   u'shame',
   u'plot',
   u'view',
   u'audience']],
 [[u'movie', u'family', u'movie']],
 [[u'wayan', u'brother', u'joke'],
  [u'actor', u'film'],
  [u'raunchy', u'joke', u'film', u'person'],
  [u'time', u'joke'],
  [u'scene', u'movie', u'parody', u'recreation', u'scene', u'joke', u'scene'],
  [u'person', u'audience', u'age', u'range'],
  [u'person', u'person', u'idea', u'person'],
  [u'skill', u'kind', u'script', u'movie', u'movie'],
  [u'movie', u'parody', u'joke']],
 [[u'movie',
   u'year',
   u'shortness',
   u'minute',
   u'end',
   u'credit',
   u'minute',
   u'film'],
  [u'lack', u'humor', u'film', u'possessed.<br', u'gag'],
  [u'spoof',
   u'basketball',
   u'spot',
   u'portrayal',
   u'character',
   u'exorcist',
   u'bit',
   u'piece',
   u'film'],
  [u'scene',
   u'scene',
   u'humor',
   u'it.<br',
   u'youth',
   u'spoof',
   u'gag',
   u'horror',
   u'film',
   u'exorcist',
   u'poltergeist'],
  [u'time', u'spoof', u'thing', u'film', u'actress', u'sequel'],
  [u'casting', u'ability', u'movie']],
 [[u'script'],
  [u'problem', u'film', u'actor', u'audience'],
  [u'actor', u'person', u'movie'],
  [u'credit', u'film', u'moment'],
  [u'laugh', u'film'],
  [u'subtlety', u'slasher', u'film', u'genre', u'gold'],
  [u'humor'],
  [u'opportunity', u'parody'],
  [u'analysis', u'bottle', u'wine']],
 [[u'attempt', u'humor'], [u'movie', u'movie', u'rip-off']],
 [[u'thing'],
  [u'couple', u'scene'],
  [u'movie', u'kid', u'child', u'movie'],
  [u'movie', u'rental', u'coupon']],
 [[u'movie', u'time'],
  [u'movie', u'tv', u'sound'],
  [u'music', u'movie', u'level', u'potential'],
  [u'it.<br', u'movie'],
  [u'kiss', u'movie'],
  [u'effect']],
 [[u'movie'],
  [u'hand', u'time', u'spoof', u'movie'],
  [u'disadvantage', u'movie', u'parody'],
  [u'comedy', u'comedy.<br', u'movie', u'timing', u'joke'],
  [u'time'],
  [u'point'],
  [u'routine', u'wheelchair', u'guy', u'tasteless.<br', u'joke', u'movie'],
  [u'example', u'boyfriend', u'sex', u'ball', u'hell'],
  [u'time', u'place', u'bathroom', u'humor', u'general', u'time'],
  [u'scat',
   u'humor',
   u'film.<br',
   u'place',
   u'movie.<br',
   u'enjoy',
   u'opinion',
   u'character',
   u'film'],
  [u'scene', u'pot', u'plant', u'favorite', u'film.<br', u'family', u'humor'],
  [u'film'],
  [u'lot', u'ability', u'scat', u'joke']],
 [[u'movie', u'disappointment'],
  [u'movie', u'comedy'],
  [u'movie', u'person', u'rapping', u'scene', u'use'],
  [u'acting'],
  [u'gag', u'snail', u'movie', u'joint', u'movie', u'theater'],
  [u'movie', u'halt', u'minute'],
  [u'attempt', u'humor', u'sequel', u'cash', u'teenager'],
  [u'movie']],
 [[u'kind', u'boring'],
  [u'act', u'film', u'group', u'teen', u'mansion', u'night'],
  [u'thing', u'start', u'movie', u'thing']],
 [[u'movie', u'film', u'plot', u'acting', u'joke'],
  [u'actor', u'joke', u'beginning'],
  [u'actor', u'joke', u'butler', u'hand', u'cringey', u'thing'],
  [u'beginning',
   u'spoof',
   u'plot',
   u'character',
   u'host',
   u'character',
   u'way',
   u'night',
   u'mansion',
   u'night'],
  [u'film']],
 [[u'fan', u'parody', u'form', u'humor'],
  [u'form', u'humor'],
  [u'boy', u'concept', u'film', u'sequel'],
  [u'family', u'geniuse'],
  [u'time', u'middle', u'night', u'spirit', u'marriage'],
  [u'dance', u'parody', u'character', u'girl'],
  [u'giggle',
   u'match',
   u'side-splitting',
   u'laugh',
   u'rest',
   u'movie',
   u'trash',
   u'gross-out',
   u'gag'],
  [u'joke', u'movie'],
  [u'example', u'innuendo', u'character'],
  [u'penis-strangulation', u'scene', u'bed'],
  [u'<br', u'pain', u'rate', u'movie']],
 [[u'director', u'knowledge', u'film'],
  [u'film', u'movie'],
  [u'movie', u'disaster'],
  [u'title', u'menace', u'juice', u'hood', u'title'],
  [u'film', u'credits.<br', u'hour', u'half', u'nonsense', u'laugh'],
  [u'woman', u'film', u'thing', u'film', u'taste', u'film']],
 [[u'chick', u'laugh'],
  [u'<br', u'humour'],
  [u'catchphrase'],
  [u'minute', u'film'],
  [u'story', u'movie', u'laugh'],
  [u'problem', u'film', u'laugh'],
  [u'joke', u'place'],
  [u'comedy', u'laugh', u'movie', u'airplane', u'hotshot'],
  [u'<br', u'storyline', u'film', u'idea', u'chick', u'film']],
 [[u'premise',
   u'change',
   u'colour',
   u'time',
   u'transformation',
   u'guy',
   u'girl',
   u'transformations',
   u'screen'],
  [u'script', u'change', u'chick'],
  [u'brother', u'woman'],
  [u'queen', u'makeup', u'woman', u'effect', u'make-up', u'person'],
  [u'mix',
   u'basketball',
   u'player',
   u'building',
   u'dialogue',
   u'plot',
   u'hole',
   u'golf',
   u'course',
   u'film',
   u'low'],
  [u'movie']],
 [[u'time', u'movie']],
 [[u'death', u'critic'],
  [u'film'],
  [u'reason',
   u'film',
   u'world',
   u'film',
   u'festival',
   u'theater',
   u'distributor',
   u'film',
   u'lot',
   u'tribute',
   u'film',
   u'dog',
   u'film',
   u'film']],
 [[u'fan', u'time', u'appearance', u'movie', u'taxi', u'role'],
  [u'movie',
   u'worst.<br',
   u'girlfriend',
   u'friend',
   u'death',
   u'foot',
   u'mountain',
   u'working',
   u'mountain',
   u'ranger'],
  [u'reality',
   u'group',
   u'robber',
   u'airplane',
   u'mountain',
   u'plan',
   u'case',
   u'money',
   u'government',
   u'plane'],
  [u'case', u'reserve', u'help', u'climber', u'course', u'movie', u'genre'],
  [u'master', u'mind', u'leader', u'gang', u'robber'],
  [u'acting', u'lot', u'action', u'course', u'one-liner', u'decor'],
  [u'movie', u'environment'],
  [u'mountain',
   u'valley',
   u'mountain',
   u'river',
   u'forest',
   u'movie',
   u'score',
   u'action',
   u'adventure',
   u'movie',
   u'kind'],
  [u'movie']],
 [[u'heist', u'movie'],
  [u'a-list',
   u'lead',
   u'maverick',
   u'director',
   u'end',
   u'movie',
   u'sub-genre'],
  [u'start',
   u'film',
   u'mastermind',
   u'piece',
   u'camera',
   u'conclusion',
   u'confusing',
   u'witness',
   u'interview',
   u'scene',
   u'sense'],
  [u'course',
   u'camera',
   u'work',
   u'hand-camera',
   u'shot',
   u'director',
   u'thrill',
   u'suspense',
   u'protagonist',
   u'film'],
  [u'clothe',
   u'bad-ass',
   u'jive',
   u'talk',
   u'shaft',
   u'movie',
   u'year',
   u'woman',
   u'thing',
   u'girlfriend',
   u'crude',
   u'heat',
   u'riff',
   u'bit-part',
   u'ripple'],
  [u'character', u'accent', u'gang', u'film', u'mask', u'face'],
  [u'ice', u'maiden', u'sub-clarice', u'bounty-hunter', u'effect'],
  [u'mish-mash',
   u'film',
   u'light',
   u'twist',
   u'end',
   u'fact',
   u'title',
   u'start',
   u'spoiler',
   u'fan'],
  [u'scene',
   u'witness-interview',
   u'year',
   u'street-kid',
   u'dialogue',
   u'child',
   u'minute',
   u'embarrassment',
   u'stake'],
  [u'film',
   u'in-joke',
   u'reference',
   u'character',
   u'heist',
   u'film',
   u'honour',
   u'self-praise'],
  [u'laugh']],
 [[u'gripping'],
  [u'script', u'direction', u'pace', u'into.<br', u'plot'],
  [u'sense', u'picture'],
  [u'hour',
   u'sequence',
   u'music',
   u'playing',
   u'action',
   u'scene',
   u'viewer',
   u'vixen',
   u'scene',
   u'intelligence.<br',
   u'wish',
   u'thriller',
   u'box'],
  [u'film']],
 [[u'movie', u'potential', u'cast', u'idea', u'budget'],
  [u'element'],
  [u'story', u'character', u'result', u'waste', u'film'],
  [u'movie'],
  [u'hope'],
  [u'disappointment', u'character'],
  [u'fixer', u'sort', u'idea'],
  [u'character'],
  [u'character']],
 [[u'trailer', u'film', u'movie'],
  [u'movie', u'actor', u'b-movie'],
  [u'day', u'age', u'plot', u'twist', u'closure', u'film', u'film'],
  [u'thing',
   u'suspect',
   u'way',
   u'lighting',
   u'delivery',
   u'line',
   u'writing'],
  [u'saxophone', u'music', u'film']],
 [[u'work', u'movie', u'die-hard', u'movie', u'copycat'],
  [u'couple',
   u'joke',
   u'twist',
   u'moment',
   u'director',
   u'editor',
   u'mistake',
   u'shame',
   u'waste',
   u'time'],
  [u'hole',
   u'hell',
   u'diamond',
   u'cell',
   u'day',
   u'thing',
   u'eyebrow',
   u'studio',
   u'contract',
   u'movie',
   u'relax',
   u'enjoy']],
 [[u'story', u'line', u'man', u'attempt'],
  [u'moment',
   u'movie',
   u'thriller',
   u'slow',
   u'crawl',
   u'high',
   u'lows',
   u'steam',
   u'minute'],
  [u'credit', u'grasp', u'super-detective', u'answer'],
  [u'genius', u'mastermind', u'retrospect'],
  [u'person', u'sub-section'],
  [u'energy', u'lot', u'plot-hole', u'ton', u'question', u'level'],
  [u'critic', u'movie']],
 [[u'movie', u'sense', u'plot', u'hole', u'vehicle'],
  [u'character', u'way'],
  [u'comment', u'chat', u'board', u'time', u'money'],
  [u'million',
   u'dollar',
   u'flash',
   u'bang',
   u'equipment',
   u'editing',
   u'music',
   u'plot',
   u'level'],
  [u'flavor'],
  [u'kid', u'game']],
 [[u'movie'],
  [u'judgment',
   u'film',
   u'movie',
   u'fool',
   u'turn.<br',
   u'beef',
   u'character'],
  [u'movie', u'character', u'mastermind', u'bank', u'robbery'],
  [u'prison', u'cell', u'metaphor'],
  [u'bank', u'robbery', u'minimum', u'number', u'thing', u'police'],
  [u'scheme', u'bank', u'hour', u'reason'],
  [u'hostage',
   u'cop',
   u'job',
   u'bank',
   u'stockroom',
   u'week',
   u'food',
   u'bucket'],
  [u'crime'],
  [u'plan',
   u'reason',
   u'screenwriter',
   u'so.<br',
   u'cop',
   u'crook',
   u'accomplice',
   u'hostage'],
  [u'hell', u'character', u'mayor', u'beck', u'agenda', u'pay', u'scale'],
  [u'cop',
   u'figure',
   u'guy',
   u'speaking',
   u'language',
   u'hour',
   u'sound',
   u'gang',
   u'robbery'],
  [u'bank', u'chairman', u'past', u'number', u'content', u'deposit', u'box'],
  [u'toy'],
  [u'manage', u'area', u'bank', u'working', u'hour'],
  [u'cop', u'diamond?<br', u'question'],
  [u'film', u'depth', u'event', u'way'],
  [u'scene', u'thing', u'movie', u'question', u'answer', u'place'],
  [u'character', u'tire'],
  [u'word',
   u'reason',
   u'movie',
   u'star',
   u'taxi',
   u'cab',
   u'pina',
   u'colada',
   u'gag',
   u'kid',
   u'video',
   u'game'],
  [u'movie', u'feature']],
 [[u'movie', u'comment', u'imdb', u'movie'],
  [u'money', u'movie', u'way', u'combination', u'film', u'action', u'flick'],
  [u'mind', u'game', u'reader'],
  [u'guard'],
  [u'hmmmmmm', u'guy', u'role', u'plate'],
  [u'performance', u'border'],
  [u'tone', u'way'],
  [u'guy', u'way', u'role'],
  [u'need', u'agent'],
  [u'movie', u'time', u'life'],
  [u'role'],
  [u'star', u'knee', u'class', u'role', u'movie'],
  [u'plot', u'plot', u'fact', u'plot', u'fact', u'movie', u'dump', u'dinner'],
  [u'way', u'un-necessary', u'racism'],
  [u'movie', u'bank', u'robber', u'racism', u'try', u'person', u'emotion'],
  [u'room'],
  [u'conclusion', u'sure', u'watch', u'movie', u'time', u'friend', u'movie'],
  [u'person', u'watch', u'movie', u'star', u'mistake']],
 [[u'yawn-inducing',
   u'disappointment',
   u'story',
   u'detective',
   u'investigation',
   u'involvement',
   u'case',
   u'money'],
  [u'bank',
   u'hostage',
   u'mastermind',
   u'thief',
   u'team',
   u'detective',
   u'thief',
   u'shot',
   u'position'],
  [u'woman',
   u'secret',
   u'intent',
   u'item',
   u'bank',
   u'owner',
   u'safety',
   u'deposit',
   u'box',
   u'bank',
   u'dilemma'],
  [u'performance'],
  [u'saving', u'grace', u'film', u'co-star', u'film'],
  [u'fact', u'high-caliber', u'performance', u'type', u'villain', u'sort'],
  [u'brood', u'depth', u'presence', u'ability', u'role'],
  [u'talent', u'film', u'impact'],
  [u'aspect', u'praise'],
  [u'film', u'making', u'blockbuster']],
 [[u'time',
   u'action',
   u'movie',
   u'mountain',
   u'clone',
   u'term',
   u'action',
   u'movie',
   u'landscape',
   u'immensity',
   u'conflict',
   u'person',
   u'peaks.<br',
   u'movie',
   u'crime',
   u'murder',
   u'snowbound',
   u'location',
   u'director',
   u'impact',
   u'violence',
   u'struggle',
   u'cold',
   u'surroundings.<br',
   u'sequence',
   u'praise',
   u'intensity',
   u'artifice',
   u'camera',
   u'actor'],
  [u'shot',
   u'animal',
   u'joke',
   u'expression',
   u'face',
   u'sequence',
   u'power.<br',
   u'set-piece',
   u'gunfight',
   u'heist',
   u'jet'],
  [u'audience', u'action', u'agent', u'theft', u'double-cross'],
  [u'stuntman',
   u'mid-air',
   u'transfer',
   u'plane',
   u'recognition.<br',
   u'avalanche',
   u'sequence',
   u'terrorists',
   u'wall',
   u'snow',
   u'mountain'],
  [u'movie', u'miracle', u'nature', u'stunt', u'dummy', u'shot'],
  [u'shot',
   u'second-unit',
   u'director',
   u'camera.<br',
   u'action',
   u'hero',
   u'day',
   u'week',
   u'movie',
   u'lot',
   u'pain',
   u'time',
   u'pain'],
  [u'role',
   u'strength',
   u'kind',
   u'action',
   u'hero',
   u'performance',
   u'mountain',
   u'rescuer',
   u'contrast',
   u'today',
   u'post-matrix',
   u'action',
   u'hero',
   u'man',
   u'hero',
   u'ability'],
  [u'hero', u'death', u'clothe', u'tear', u'escape', u'situation'],
  [u'hit',
   u'bleed',
   u'cavern',
   u'sequence',
   u'pummeling',
   u'mad-dog',
   u'villains.<br',
   u'villain',
   u'movie',
   u'effectiveness',
   u'movie',
   u'teenager',
   u'guy',
   u'step',
   u'way',
   u'guy',
   u'dust',
   u'ice',
   u'point',
   u'character',
   u'movie',
   u'demise.<br',
   u'accent',
   u'movie',
   u'model',
   u'plane',
   u'model',
   u'helicopter',
   u'actor',
   u'dialogue',
   u'scene',
   u'hostage',
   u'task',
   u'stay'],
  [u'actor',
   u'trouble',
   u'line.<br',
   u'toss',
   u'credibility',
   u'sake',
   u'entertaining',
   u'show.<br',
   u'movie',
   u'example',
   u'man'],
  [u'mastermind',
   u'mistake',
   u'carelessness',
   u'warning',
   u'rock',
   u'face',
   u'gripping',
   u'tug-of-war',
   u'guy',
   u'rope',
   u'leg.<br',
   u'order',
   u'means',
   u'sequence',
   u'fun',
   u'opportunity',
   u'arrogance',
   u'captor.<br',
   u'style',
   u'serial',
   u'time',
   u'foundation',
   u'element',
   u'film.<br',
   u'aircraft',
   u'model',
   u'moment',
   u'couple',
   u'scene',
   u'set',
   u'snow',
   u'scene',
   u'bat',
   u'wolf',
   u'narrative'],
  [u'decision',
   u'film',
   u'death',
   u'scene',
   u'motion',
   u'technique',
   u'scenes.<br',
   u'shame',
   u'action',
   u'movie',
   u'character',
   u'movie',
   u'year'],
  [u'time', u'sequel', u'movie'],
  [u'sequel', u'clinker', u'list.<br', u'movie']],
 [[u'wife', u'film'],
  [u'plot', u'theater', u'sense'],
  [u'spoiler', u'head', u'bank', u'hidden'],
  [u'deal',
   u'loot',
   u'stolen',
   u'jew',
   u'evidence',
   u'diamond',
   u'document',
   u'swastika',
   u'safety',
   u'deposit',
   u'box',
   u'bank'],
  [u'time', u'search', u'bank', u'record', u'fact'],
  [u'hostage', u'situation', u'bank', u'robber'],
  [u'talk',
   u'power',
   u'detective.<br',
   u'bank',
   u'robber',
   u'million',
   u'dollar',
   u'currency',
   u'vault'],
  [u'attempt',
   u'explanation',
   u'film',
   u'mastermind',
   u'henchman',
   u'brains.<br',
   u'connection',
   u'gain',
   u'permission',
   u'bank',
   u'control',
   u'bank',
   u'robber',
   u'hostage'],
  [u'bank', u'robber', u'deal', u'document', u'hand'],
  [u'point',
   u'any?).<br',
   u'wife',
   u'arrogance',
   u'player',
   u'ace',
   u'detective',
   u'crack',
   u'trouble',
   u'shooter',
   u'problems.<br',
   u'movie',
   u'hole',
   u'sense'],
  [u'film', u'actor', u'script', u'writing']],
 [[u'film', u'trailer'],
  [u'reviews', u'adoration', u'banality', u'piece', u'work'],
  [u'theater',
   u'money.<br',
   u'imdb',
   u'page',
   u'<br',
   u'day',
   u'budget',
   u'medium',
   u'hype',
   u'time'],
  [u'wonder',
   u'performance',
   u'all.<br',
   u'film',
   u'project',
   u'justice',
   u'time',
   u'course'],
  [u'writing', u'premise', u'merit'],
  [u'film', u'clich\xe9', u'scene', u'characterization'],
  [u'portrayal', u'fixer', u'person', u'problem', u'script'],
  [u'<br', u'bank', u'robber', u'door', u'polouse', u'officer', u'bank'],
  [u'struggle', u'robber', u'face'],
  [u'response', u'robber', u'identification'],
  [u'robber', u'accomplice'],
  [u'<br', u'bank', u'robber'],
  [u'agenda'],
  [u'situation'],
  [u'guy', u'pizza'],
  [u'robber', u'hostage', u'shield'],
  [u'guy', u'number', u'plan', u'robber'],
  [u'guy'],
  [u'authority',
   u'credential',
   u'hostage',
   u'situation',
   u'more?<br',
   u'document',
   u'time'],
  [u'woman'],
  [u'<br',
   u'end',
   u'movie',
   u'wall',
   u'supply',
   u'room',
   u'week',
   u'material'],
  [u'<br', u'plot', u'script', u'acting', u'yada', u'yada', u'yada']],
 [[u'waist', u'actor', u'movie'],
  [u'question', u'comment', u'robber'],
  [u'bank',
   u'worker',
   u'camera',
   u'footage',
   u'robber',
   u'entry',
   u'robber',
   u'hostage'],
  [u'moment', u'hostage', u'uniform', u'door', u'time'],
  [u'movie', u'music', u'score', u'shooting'],
  [u'movie']],
 [[u'movie', u'entirety', u'adoration', u'critic', u'user'],
  [u'western', u'phrase'],
  [u'movie', u'story', u'character', u'dialogue', u'dialogue', u'film'],
  [u'movie',
   u'groaner',
   u'minute',
   u'time',
   u'actor',
   u'actress',
   u'script',
   u'life'],
  [u'line', u'wave'],
  [u'<br', u'dialogue', u'gunfight'],
  [u'western', u'action'],
  [u'edge',
   u'gunfighting',
   u'choreography',
   u'gunplay',
   u'reason',
   u'movie',
   u'list',
   u'western'],
  [u'showdown',
   u'director',
   u'score',
   u'movie',
   u'saving.<br',
   u'flaw',
   u'visual',
   u'movie',
   u'setting'],
  [u'acting', u'actor'],
  [u'western', u'favor', u'rent', u'instead.<br']],
 [[u'performance'],
  [u'thing', u'story', u'line'],
  [u'film', u'end'],
  [u'action'],
  [u'problem'],
  [u'bit', u'time'],
  [u'time', u'movie', u'sale']],
 [[u'reboot', u'meal', u'book', u'movie', u'person'],
  [u'control',
   u'rage',
   u'it.<br',
   u'turn',
   u'display',
   u'conflict',
   u'personality',
   u'pulse',
   u'rate',
   u'beat',
   u'minute'],
  [u'reviewer',
   u'introduction',
   u'midi-chlorian',
   u'ability',
   u'blood',
   u'test'],
  [u'record', u'pulse', u'rate', u'run', u'person.<br', u'drive'],
  [u'memory', u'mother', u'death', u'father', u'role', u'life'],
  [u'surface', u'anger', u'rage'],
  [u'shooter',
   u'scene',
   u'fighter',
   u'jet',
   u'collision.<br',
   u'movie',
   u'effect'],
  [u'action',
   u'scene',
   u'plenty',
   u'plot',
   u'movie',
   u'action',
   u'sake',
   u'action.<br',
   u'quest',
   u'story',
   u'focus'],
  [u'effect', u'experiment'],
  [u'director', u'cue', u'dimension', u'relationship'],
  [u'repeat', u'thing', u'movie', u'book', u'version'],
  [u'fan',
   u'comic',
   u'movie',
   u'comic',
   u'fanboy',
   u'dream',
   u'heart',
   u'version',
   u'day.<br',
   u'comic'],
  [u'example', u'movie', u'comic-book', u'root', u'heart']],
 [[u'film', u'reviews'],
  [u'yesterday', u'network', u'incredible'],
  [u'fun', u'character'],
  [u'fact', u'face', u'computer', u'graphic', u'state'],
  [u'poodle', u'movie', u'ever.<br'],
  [u'way',
   u'movie',
   u'dare',
   u'action',
   u'scene',
   u'breaking',
   u'containment',
   u'chamber',
   u'base',
   u'tank',
   u'helicopter',
   u'desert',
   u'stratosphere',
   u'street'],
  [u'action', u'sequence', u'superhero', u'movie'],
  [u'feat.<br',
   u'course',
   u'father',
   u'sort',
   u'shape-shifting',
   u'villain',
   u'action',
   u'sequence',
   u'heroic',
   u'shame'],
  [u'dog', u'environment'],
  [u'appearance', u'thing', u'movie'],
  [u'version', u'time', u'moment'],
  [u'skin', u'tone', u'muscle', u'tone', u'creature', u'sort', u'texture'],
  [u'lighting', u'environment', u'effect', u'year', u'year'],
  [u'general', u'faker'],
  [u'love', u'credit', u'eye'],
  [u'monster'],
  [u'<br',
   u'version',
   u'chance',
   u'version',
   u'action',
   u'sequence',
   u'dialogue'],
  [u'scene'],
  [u'insult',
   u'audience',
   u'version',
   u'poodle',
   u'course).<br',
   u'filmmaker',
   u'feeling',
   u'movie']],
 [[u'screening', u'film'],
  [u'kid', u'slap-stick', u'fart', u'god', u'mouse', u'crotch', u'lot'],
  [u'movie', u'unintelligent'],
  [u'character', u'space', u'relationship', u'charm', u'all.<br', u'film'],
  [u'job', u'clay', u'imagery.<br', u'film', u'couple', u'time'],
  [u'failure'],
  [u'parent', u'kid', u'kid', u'cheap-joke', u'money']],
 [[u'month', u'debate', u'poster', u'film'],
  [u'argument', u'film.<br', u'intention', u'strength'],
  [u'asset', u'sewer', u'rat', u'captain', u'movie', u'character'],
  [u'cool',
   u'screen',
   u'time',
   u'sniveling.<br',
   u'thing',
   u'repetition',
   u'joke'],
  [u'tolerance',
   u'gag',
   u'pain',
   u'time',
   u'low.<br',
   u'waste',
   u'time',
   u'griping',
   u'kleptomaniac',
   u'tendency',
   u'film',
   u'coincidence']],
 [[u'movie', u'tonight'],
  [u'fan', u'film'],
  [u'point', u'film'],
  [u'visual',
   u'voice',
   u'work',
   u'notch',
   u'opinion',
   u'time',
   u'lizard',
   u'villain'],
  [u'problem', u'movie', u'feature'],
  [u'register',
   u'fact',
   u'slapstick',
   u'routine',
   u'treacle',
   u'plot',
   u'stop',
   u'attempt',
   u'message'],
  [u'lot', u'bait', u'category', u'way', u'critic', u'hardware'],
  [u'feature', u'rat', u'advice', u'wait']],
 [[u'action', u'film'],
  [u'movie', u'character', u'performance', u'direction'],
  [u'action', u'film', u'term', u'action', u'scene'],
  [u'action', u'film', u'year', u'genre'],
  [u'fan', u'memory'],
  [u'plenty', u'action', u'action', u'man', u'form'],
  [u'lover', u'film', u'hallmark', u'film'],
  [u'film', u'support']],
 [[u'year', u'movie'],
  [u'rat', u'palace'],
  [u'rat', u'city', u'girl', u'rat', u'gem', u'frog'],
  [u'gem', u'army', u'rats.he', u'gem', u'rat', u'city'],
  [u'movie', u'slug'],
  [u'effect'],
  [u'noise'],
  [u'line', u'year', u'old'],
  [u'movie', u'family', u'member'],
  [u'animation', u'dreamwork', u'art', u'wallace'],
  [u'movie']],
 [[u'movie', u'matter', u'person', u'movie', u'kid'],
  [u'theater', u'movie', u'cast'],
  [u'truth', u'silly'],
  [u'course', u'time', u'time', u'laugh'],
  [u'son', u'movie'],
  [u'daughter', u'half', u'way'],
  [u'kid', u'character', u'animation'],
  [u'daughter', u'nightmares.<br', u'type'],
  [u'quality', u'quality', u'movie']],
 [[u'half', u'half'],
  [u'animation', u'effect', u'movie', u'story', u'movie', u'meant', u'kid'],
  [u'adult', u'flick.<br', u'joke', u'adult']],
 [[u'shop', u'hell', u'movie'],
  [u'fan', u'fan', u'disgust'],
  [u'movie'],
  [u'character', u'frog', u'guy', u'movie', u'villain']],
 [[u'let',
   u'word',
   u'maker',
   u'film',
   u'chance',
   u'film',
   u'script',
   u'animation',
   u'story',
   u'thumbtack'],
  [u'bother', u'way', u'group', u'adult', u'child'],
  [u'kind',
   u'insult',
   u'film',
   u'filmmaker',
   u'child',
   u'idiot',
   u'claptrap',
   u'cost',
   u'effort',
   u'sweat',
   u'gag',
   u'adult']],
 [[u'film'],
  [u'line',
   u'song',
   u'worry',
   u'slug',
   u'toilet',
   u'roll',
   u'foot',
   u'leg',
   u'way',
   u'groin'],
  [u'fan', u'fan', u'disgust'],
  [u'animation'],
  [u'continuity', u'mistake', u'number'],
  [u'point',
   u'daughter',
   u'start',
   u'film',
   u'catch',
   u'cage',
   u'door',
   u'hook',
   u'round',
   u'knob'],
  [u'it.<br',
   u'want',
   u'word',
   u'joke',
   u'way',
   u'time',
   u'sort',
   u'connection',
   u'character',
   u'character',
   u'film',
   u'minute'],
  [u'paint', u'grass', u'option']],
 [[u'cage', u'metaphor', u'kid'],
  [u'plot-line'],
  [u'sewer',
   u'underworld',
   u'reflection',
   u'world',
   u'wealth',
   u'money',
   u'lot'],
  [u'female', u'pair', u'stereotype']],
 [[u'anybody', u'film'],
  [u'animation', u'standard', u'standard'],
  [u'frog', u'attempt', u'entertainment.<br'],
  [u'rat', u'relationship']],
 [[u'trailer'],
  [u'movie',
   u'fashion',
   u'point',
   u'audience',
   u'movie',
   u'play',
   u'out.<br',
   u'character',
   u'ex-girlfriend',
   u'check'],
  [u'buddy',
   u'personality',
   u'friend',
   u'girl',
   u'character',
   u'friend',
   u'friend',
   u'one-liner',
   u'case',
   u'bunch',
   u'movie',
   u'reference',
   u'guy',
   u'square',
   u'throw',
   u'message',
   u'check'],
  [u'girl',
   u'ex-boyfriend',
   u'parent',
   u'block',
   u'relationship',
   u'mean',
   u'thing',
   u'family',
   u'member',
   u'character',
   u'check'],
  [u'movie',
   u'moment',
   u'swearing',
   u'person',
   u'hit',
   u'scene',
   u'trailer',
   u'innuendos',
   u'check'],
  [u'publicity',
   u'crowd',
   u'kind',
   u'humor',
   u'medium',
   u'exposure',
   u'person',
   u'comedy',
   u'humor',
   u'movie',
   u'person'],
  [u'let', u'way', u'theater', u'laugh', u'screen'],
  [u'thing',
   u'hotness',
   u'looking).<br',
   u'resolution',
   u'film',
   u'lot',
   u'subplot',
   u'curb',
   u'story',
   u'movie',
   u'window'],
  [u'resolution'],
  [u'abruptness.<br', u'thing', u'worth', u'movie', u'soundtrack'],
  [u'choice', u'rock', u'song', u'score', u'movie', u'mix'],
  [u'prop',
   u'choice',
   u'sound.<br',
   u'thing',
   u'movie',
   u'summer',
   u'sponsorship',
   u'bottle',
   u'cap',
   u'promotion'],
  [u'pg-13', u'year', u'night', u'group', u'friend', u'knock'],
  [u'movie', u'year']],
 [[u'movie',
   u'potential',
   u'bewilderment',
   u'theme',
   u'theater',
   u'idea',
   u'generation'],
  [u'decerebrate', u'oaf', u'film', u'dog'],
  [u'buck'],
  [u'moment', u'trailer', u'trailer', u'performance'],
  [u'relief', u'friend', u'penchant', u'film', u'analogy', u'home', u'speech'],
  [u'plastic', u'creature', u'face', u'smile', u'friend'],
  [u'gentleman',
   u'brunette',
   u'premise',
   u'society',
   u'love',
   u'facade',
   u'way',
   u'dude',
   u'shaving',
   u'scrotum',
   u'ejaculation',
   u'allusion',
   u'happiness',
   u'scene',
   u'denouement',
   u'family',
   u'dog'],
  [u'movie', u'joke', u'ball', u'sewage'],
  [u'marketing', u'shine', u'mass', u'gold', u'person']],
 [[u'guilt',
   u'lot',
   u'thing',
   u'ledge',
   u'ace',
   u'mountain',
   u'rescue',
   u'climber',
   u'girlfriend',
   u'sky',
   u'weather',
   u'bit',
   u'threatening',
   u'mid-air',
   u'hijacking',
   u'plane',
   u'middle',
   u'crash',
   u'landing\x85',
   u'<br',
   u'peak',
   u'mountain',
   u'guide',
   u'cash',
   u'hiker',
   u'emergency',
   u'help',
   u'rescue',
   u'unit\x85',
   u'<br',
   u'team',
   u'scene',
   u'crash',
   u'distress',
   u'bunch',
   u'terrorist',
   u'way',
   u'mountain',
   u'case',
   u'money\x85',
   u'<br',
   u'shot',
   u'scenery',
   u'height',
   u'temperature',
   u'action',
   u'adventure',
   u'movie\x85']],
 [[u'movie', u'letdown'],
  [u'movie', u'movie', u'theater'],
  [u'movie', u'movie', u'humor', u'storyline', u'movie'],
  [u'movie', u'waste', u'time'],
  [u'movie', u'actor', u'movie', u'chemistry'],
  [u'actor', u'play', u'time', u'movie', u'movie'],
  [u'job', u'actress', u'chemistry'],
  [u'actor', u'movie', u'affect', u'movie'],
  [u'humor', u'movie', u'liner', u'movie', u'friend'],
  [u'time', u'romance', u'comedy'],
  [u'movie', u'writer', u'director'],
  [u'storyline',
   u'movie',
   u'girl',
   u'guy',
   u'story\x85boring',
   u'originality',
   u'letdown']],
 [[u'script'],
  [u'hangover', u'comedy', u'joke', u'way', u'field'],
  [u'chick',
   u'personality',
   u'thirty',
   u'chick',
   u'ass',
   u'non-underwear',
   u'joke'],
  [u'attraction', u'chick', u'love'],
  [u'attraction', u'relationship', u'seat', u'belt', u'mishap', u'kiss'],
  [u'relationship'],
  [u'focus',
   u'movie',
   u'relationship',
   u'attempt',
   u'super-bad-esquire',
   u'movie',
   u'semi',
   u'plot'],
  [u'hangover', u'nature']],
 [[u'comedy', u'manner', u'wittiest', u'play', u'hand', u'cast'],
  [u'role', u'rest', u'cast', u'procedure', u'waste', u'time'],
  [u'stage',
   u'accent',
   u'sentence',
   u'member',
   u'melodrama',
   u'comedy',
   u'production',
   u'bookend',
   u'tragedy',
   u'office'],
  [u'direction', u'plenty', u'servant', u'music'],
  [u'farce', u'screen', u'version', u'play', u'pleasure', u'word']],
 [[u'action', u'movie', u'schtick'],
  [u'money.<br'],
  [u'battle'],
  [u'soldier'],
  [u'victim'],
  [u'bunch',
   u'explosions.<br',
   u'movie',
   u'rescue',
   u'you!<br',
   u'attack',
   u'village'],
  [u'row', u'seat', u'cleansing', u'slaughter', u'town'],
  [u'body', u'count', u'guy', u'chopper', u'child'],
  [u'<br', u'movie'],
  [u'plot', u'night']],
 [[u'acting', u'screenplay', u'movie'],
  [u'hollywood',
   u'war',
   u'film',
   u'end',
   u'time',
   u'appeal',
   u'public',
   u'greatness',
   u'glory',
   u'war'],
  [u'war', u'movie', u'quality', u'war'],
  [u'film',
   u'bunch',
   u'guy',
   u'countryside',
   u'cliche',
   u'line',
   u'thing',
   u'force',
   u'brutality']],
 [[u'film'],
  [u'case',
   u'i-need-this-to-happen-or-we-have-no-movie',
   u'scenario',
   u'mission',
   u'doctor',
   u'person',
   u'chopper',
   u'refugee',
   u'border'],
  [u'doctor', u'chemistry'],
  [u'waste', u'time', u'tear', u'rental', u'fee'],
  [u'day']],
 [[u'me.<br', u'plot'],
  [u'minute', u'end'],
  [u'soldier', u'order'],
  [u'danger', u'heck', u'order', u'remember).<br', u'scene', u'movie'],
  [u'village', u'population', u'rebel'],
  [u'truck', u'rebel'],
  [u'road', u'explanation'],
  [u'movie',
   u'point',
   u'it.<br',
   u'movie',
   u'insult',
   u'brain',
   u'group',
   u'soldier',
   u'rebel'],
  [u'grenade', u'machine', u'gun'],
  [u'crap.<br',
   u'guess',
   u'brain',
   u'rebel',
   u'bunch',
   u'idiot',
   u'movie',
   u'rating']],
 [[u'stand', u'film'],
  [u'battle', u'scene', u'doubt', u'lady'],
  [u'warrior', u'point', u'design'],
  [u'film', u'landscape', u'castle'],
  [u'film', u'character', u'accent', u'film'],
  [u'film', u'civilisation.<br', u'film', u'family'],
  [u'bored.<br', u'adult', u'lack', u'realism']],
 [[u'film', u'money'],
  [u'story', u'soap', u'opera'],
  [u'soap', u'opera', u'quality'],
  [u'fan', u'actor', u'shame'],
  [u'plastic', u'surgery', u'need'],
  [u'comment', u'girl'],
  [u'saffron', u'role']],
 [[u'fantasy', u'admission'],
  [u'everybody', u'talk', u'star', u'star'],
  [u'territory'],
  [u'spade', u'course', u'time']],
 [[u'world', u'action', u'movie'],
  [u'punk',
   u'rule',
   u'rescue',
   u'climber',
   u'town',
   u'friend',
   u'rescue',
   u'mountain',
   u'peak'],
  [u'time', u'person', u'team', u'thieve'],
  [u'lot', u'money', u'government', u'clone'],
  [u'trade',
   u'confine',
   u'mountain',
   u'range',
   u'scene',
   u'weakness',
   u'hero'],
  [u'shred',
   u'character',
   u'number',
   u'bullet',
   u'ease',
   u'rock',
   u'side-effect'],
  [u'action', u'movie', u'action', u'movie'],
  [u'showcase', u'scene', u'stunt'],
  [u'stunt',
   u'stunt',
   u'movie',
   u'rest',
   u'movie',
   u'beginning',
   u'action',
   u'awesomeness'],
  [u'lead', u'villain', u'dude'],
  [u'quite',
   u'lead',
   u'villain',
   u'ever.<br',
   u'effort',
   u'effort',
   u'action',
   u'movie']],
 [[u'difference', u'course'],
  [u'monkey', u'self', u'humor'],
  [u'photograph',
   u'semi',
   u'ravishing',
   u'sprint',
   u'position',
   u'wall',
   u'legion',
   u'fan'],
  [u'film', u'century'],
  [u'chance']],
 [[u'opinion', u'history', u'man'],
  [u'movie.<br', u'hair', u'makeup'],
  [u'cameo', u'scene', u'day', u'director', u'alright'],
  [u'ok'],
  [u'<br', u'greek', u'man', u'accent'],
  [u'accent',
   u'screen.<br',
   u'camera.<br',
   u'line',
   u'me."<br',
   u'music',
   u'music.<br',
   u'thigh',
   u'way',
   u'up.<br',
   u'male',
   u'friend'],
  [u'mind',
   u'history',
   u'says.<br',
   u'story',
   u'expression.<br',
   u'god',
   u'statue',
   u'egyptian',
   u'drag.<br',
   u'man',
   u'men.<br',
   u'thousand',
   u'extra',
   u'movie',
   u'skin',
   u'color',
   u'light',
   u'egyptian',
   u'lot',
   u'news',
   u'desert',
   u'locale',
   u'ability',
   u'timber',
   u'pyre',
   u'horse',
   u'like.<br',
   u'actor',
   u'greek',
   u'hairdos.<br',
   u'change',
   u'expression',
   u'sun',
   u'eyes.<br',
   u'soldier',
   u'fought',
   u'outfit',
   u'impeccable.<br',
   u'soldier',
   u'underwear',
   u'skirts.<br',
   u'temple',
   u'ruin']],
 [[u'grade', u'odyssey', u'grade'],
  [u'disappointment', u'campus', u'epos', u'literature'],
  [u'poet', u'year', u'war'],
  [u'historian', u'war', u'reason', u'war', u'beauty', u'position'],
  [u'epos', u'event', u'purpose', u'work'],
  [u'<br',
   u'poem',
   u'definition',
   u'honour',
   u'anger',
   u'hate',
   u'heroism',
   u'discipline',
   u'loyalty'],
  [u'talk', u'warrior', u'battle'],
  [u'eye', u'person', u'colleague'],
  [u'shame', u'million', u'dollar', u'scenario'],
  [u'way',
   u'storm',
   u'blockbuster',
   u'computer',
   u'graphic',
   u'work',
   u'work'],
  [u'<br'],
  [u'movie.<br']],
 [[u'hope'],
  [u'dialogue',
   u'laughable',
   u'film',
   u'fight',
   u'scene',
   u'rest',
   u'story',
   u'consumer',
   u'approval'],
  [u'war', u'year', u'wall', u'arrow', u'ankle'],
  [u'story', u'soap.<br', u'lack', u'chemistry'],
  [u'woman', u'war', u'deal'],
  [u'spark', u'emotion', u'hope.<br', u'film', u'script', u'movie'],
  [u'tree', u'pyre', u'trees?<br']],
 [[u'enthusiasm', u'advance', u'screening', u'movie'],
  [u'tale', u'mankind', u'epic', u'tale', u'kid'],
  [u'plot', u'joke', u'thing', u'soap', u'opera'],
  [u'element',
   u'faithful',
   u'plot',
   u'manner',
   u'audience',
   u'time',
   u'script',
   u'service',
   u'battle',
   u'battle'],
  [u'disappointment',
   u'character',
   u'combination',
   u'power',
   u'ruthlessness',
   u'male',
   u'lover',
   u'poem',
   u'turn',
   u'beach',
   u'guise',
   u'script',
   u'effort',
   u'warrior',
   u'figure'],
  [u'actor', u'script'],
  [u'waste', u'talent'],
  [u'plenty',
   u'hunk',
   u'lady',
   u'battle',
   u'scene',
   u'movie',
   u'battle',
   u'siege']],
 [[u'film', u'experiment', u'experiment'],
  [u'filmmaker', u'problem', u'denominator'],
  [u'manner', u'money', u'exploitation'],
  [u'step', u'filmmaker', u'meeting', u'expert', u'attempt'],
  [u'filmmaker', u'posterior', u'situation'],
  [u'filmmaker', u'month', u'subject', u'month'],
  [u'expert'],
  [u'film', u'high-brow', u'jackass', u'stunt', u'documentary'],
  [u'person', u'life', u'hand']],
 [[u'man', u'money', u'trap', u'rat', u'race'],
  [u'person'],
  [u'mortgage', u'rent', u'payment', u'boss'],
  [u'person', u'performance', u'reviews', u'credit', u'card', u'payment'],
  [u'chance', u'citizen'],
  [u'film', u'film'],
  [u'way', u'sheeple'],
  [u'arrogance.<br', u'film', u'man']],
 [[u'picture'],
  [u'tv', u'lot', u'panhandler', u'day', u'day', u'reality'],
  [u'sign',
   u'work',
   u'work',
   u'id',
   u'sure',
   u'prepaid',
   u'year',
   u'bank',
   u'cash',
   u'game',
   u'casino'],
  [u'bankroll'],
  [u'cause', u'risk', u'spending', u'money', u'sock'],
  [u'contact', u'yahoo', u'person', u'fact', u'smoke', u'drug'],
  [u'housing', u'month', u'time', u'poker'],
  [u'day',
   u'hiding',
   u'stage',
   u'convention',
   u'center',
   u'casino',
   u'night',
   u'sleeping',
   u'security']],
 [[u'man'],
  [u'creator',
   u'giggle',
   u'antic',
   u'kind',
   u'experiment.<br',
   u'man',
   u'life'],
  [u'guidance', u'counseling', u'way.<br'],
  [u'man', u'fun', u'fall', u'altitude'],
  [u'sow',
   u'music',
   u'camera',
   u'shot',
   u'end',
   u'ground',
   u'car',
   u'crash',
   u'video',
   u'time',
   u'car',
   u'crash',
   u'sign']],
 [[u'notch'],
  [u'writer', u'table', u'word', u'poop', u'laugh'],
  [u'foot', u'kid', u'dunk', u'foot', u'basketball', u'net'],
  [u'kidnapper',
   u'gun',
   u'kidnapper',
   u'month',
   u'karate',
   u'training',
   u'sword'],
  [u'thing', u'movie', u'gang', u'world', u'anybody'],
  [u'guy', u'movie', u'laugh']],
 [[u'title',
   u'meaning',
   u'boxing',
   u'ring',
   u'difference',
   u'grievance',
   u'wedding',
   u'ring',
   u'trouble',
   u'cause',
   u'trouble',
   u'bracelet',
   u'love'],
  [u'<br', u'boxer', u'start', u'film'],
  [u'career', u'movie', u'eye', u'girl', u'fun'],
  [u'round', u'win', u'boxer', u'manager', u'fighter'],
  [u'trainer', u'fortune', u'plan'],
  [u'fight', u'day', u'attraction', u'feel'],
  [u'training',
   u'wife.<br',
   u'boxing',
   u'movie',
   u'hero',
   u'rail',
   u'champion',
   u'way'],
  [u'minute', u'film'],
  [u'round', u'courage', u'triumph'],
  [u'film', u'you.<br']],
 [[u'humor'],
  [u'film'],
  [u'movie', u'omen', u'thing', u'time', u'killer', u'laugh']],
 [[u'character', u'stereotype', u'writer'],
  [u'stunt', u'man', u'usage', u'scene'],
  [u'line', u'dude', u'dump', u'time', u'ass']],
 [[u'bit',
   u'fan',
   u'art',
   u'film',
   u'bit',
   u'cheesy.<br',
   u'program',
   u'kid',
   u'power',
   u'ranger',
   u'kid'],
  [u'parent',
   u'film',
   u'maker',
   u'reality',
   u'kid',
   u'punching',
   u'everyone.<br',
   u'kid',
   u'movie',
   u'point',
   u'kid',
   u'message',
   u'message',
   u'difference',
   u'thing',
   u'movie',
   u'quality'],
  [u'acting'],
  [u'actor', u'fart', u'ninja'],
  [u'kid', u'way', u'kid', u'actor', u'movie', u'plot', u'review'],
  [u'yea', u'bunch', u'guy'],
  [u'anyone.<br'],
  [u'kid', u'movie', u'kid', u'movie'],
  [u'child',
   u'garbage',
   u'art',
   u'acting',
   u'reality',
   u'period',
   u'movie',
   u'kid',
   u'kid',
   u'girl',
   u'girl',
   u'crush',
   u'star',
   u'movie',
   u'kid',
   u'adult',
   u'movie',
   u'time',
   u'child',
   u'kung',
   u'tv',
   u'series',
   u'ton',
   u'film',
   u'child',
   u'thing',
   u'way',
   u'man',
   u'leg',
   u'grandpa',
   u'man',
   u'leg']],
 [[u'movie', u'reviews'], [u'slasher', u'flick', u'reviews', u'movie']],
 [[u'film'],
  [u'decision',
   u'character',
   u'performance',
   u'lot',
   u'fanatic',
   u'attitude',
   u'attitude',
   u'writer',
   u'way',
   u'character',
   u'tattoo',
   u'crucifix'],
  [u'case', u'movie']],
 [[u"film'o",
   u'book',
   u'fine',
   u'performance',
   u'actor',
   u'end',
   u'plot',
   u'twist',
   u'shakespearean',
   u'demise',
   u'watch.<br',
   u'actor',
   u'work',
   u'direction',
   u'talent',
   u'minute',
   u'film.<br',
   u'cameo',
   u'fun',
   u'line',
   u'this.<br',
   u'performance',
   u'oil',
   u'form',
   u'weed'],
  [u'line', u'talent', u'generation.<br', u'point'],
  [u'view',
   u'dip',
   u'prison',
   u'scene',
   u'baseball',
   u'bat',
   u'panic',
   u'prescence.<br'],
  [u'underside', u'car', u'mile', u'speed'],
  [u'parts', u'rambling', u'ending.<br', u'year']],
 [[u'collaboration', u'mess'],
  [u'element',
   u'film',
   u'horror',
   u'phone',
   u'ringing',
   u'door',
   u'gimmick',
   u'embarrassing',
   u'master',
   u'craftsman'],
  [u'cast', u'accent'],
  [u'movie', u'psycho', u'killer'],
  [u'scene', u'climax', u'psycho', u'stalker'],
  [u'movie'],
  [u'time']],
 [[u'movie', u'entertaining', u'ability'],
  [u'use', u'stylistic', u'number', u'movie', u'director'],
  [u'film', u'flourish', u'business'],
  [u'film', u'stock', u'setting', u'distraction'],
  [u'close-up', u'imitation', u'smirk', u'derision', u'sense', u'terror'],
  [u'score', u'homage'],
  [u'cast',
   u'time',
   u'performance',
   u'caricature',
   u'exception',
   u'turn',
   u'daughter',
   u'family.<br',
   u'offender'],
  [u'sure', u'mouth', u'aura', u'drain'],
  [u'expert', u'accent', u'drawl'],
  [u'actor', u'flaw'],
  [u'fan',
   u'screen',
   u'performance.<br',
   u'spoilers.)<br',
   u'style',
   u'movie',
   u'finale'],
  [u'situation', u'tension', u'viewer', u'bombardment'],
  [u'reputation',
   u'killer-not-dead-yet',
   u'trick',
   u'individual',
   u'thriller'],
  [u'work']],
 [[u'movie', u'grade', u'scale', u'movie', u'thriller'],
  [u'thriller',
   u'woman',
   u'press',
   u'charge',
   u'court',
   u'man',
   u'arm',
   u'crap',
   u'life',
   u'lawyer',
   u'feeling',
   u'family',
   u'person'],
  [u'problem',
   u'movie',
   u'kind',
   u'movie',
   u'question',
   u'bastard',
   u'bent',
   u'revenge',
   u'lawyer',
   u'family',
   u'rape',
   u'daughter',
   u'bit'],
  [u'life', u'movie', u'life', u'way', u'hour']],
 [[u'thriller', u'thing', u'psycho'],
  [u'finale', u'genre', u'villain'],
  [u'version', u'improvement'],
  [u'movie', u'movie', u'favourite', u'actress', u'girl', u'comparison']],
 [[u'movie', u'user', u'ranking'],
  [u'credit'],
  [u'sister', u'day', u'month'],
  [u'reason'],
  [u'disaster', u'scene', u'forgot', u'baby', u'guy', u'suicide', u'crowd'],
  [u'person', u'ship', u'film', u'immediacy', u'emotion', u'challenge'],
  [u'romance'],
  [u'relationship', u'figment', u'imagination'],
  [u'film'],
  [u'story', u'acting', u'cinematography', u'music', u'crew', u'worker']],
 [[u'round', u'prize', u'way', u'customer'],
  [u'fight', u'champ', u'work'],
  [u'boxer'],
  [u'way', u'ranking', u'meantime', u'start'],
  [u'fight'],
  [u'rage', u'help', u'performance'],
  [u'see.<br',
   u'film',
   u'today',
   u'sort',
   u'film',
   u'director',
   u'mystery-suspense',
   u'film',
   u'genre',
   u'film'],
  [u'fact', u'way', u'film', u'style', u'plot', u'silent', u'husband'],
  [u'lot',
   u'boxing',
   u'film',
   u'day',
   u'departure',
   u'director',
   u'ending.<br',
   u'bit',
   u'boxing',
   u'champ',
   u'film'],
  [u'punch']],
 [[u'fear', u'fear', u'film'],
  [u'fan',
   u'fear',
   u'scene',
   u'film',
   u'key',
   u'ignition',
   u'dog',
   u'score',
   u'film',
   u'lot',
   u'opportunity',
   u'comparison',
   u'fear',
   u'scene'],
  [u'version',
   u'fear',
   u'version',
   u'film',
   u'screenwriter',
   u'fear',
   u'scene',
   u'scene',
   u'thing'],
  [u'revenge', u'version', u'fanatic', u'touch', u'word'],
  [u'fear', u'film'],
  [u'character'],
  [u'story',
   u'court',
   u'jail',
   u'version',
   u'ex-lawyer',
   u'jail',
   u'him.<br',
   u'story',
   u'script'],
  [u'sub-plot', u'mix', u'picture'],
  [u'film', u'scene', u'line', u'bit'],
  [u'aspect',
   u'nature',
   u'film',
   u'help',
   u'department',
   u'well.<br',
   u'version',
   u'fear',
   u'lighting',
   u'subtlety',
   u'brutality',
   u'thrill',
   u'film',
   u'sense',
   u'danger',
   u'entirety'],
  [u'fear',
   u'film',
   u'cookie-cutter',
   u'sense',
   u'danger',
   u'scene',
   u'style',
   u'skyline',
   u'style'],
  [u'violence', u'effort', u'fear', u'shock', u'awe.<br', u'acting'],
  [u'performance', u'scare', u'end', u'film'],
  [u'thing',
   u'performance',
   u'film',
   u'display',
   u'fear',
   u'desperation',
   u'end'],
  [u'film'],
  [u'nomination',
   u'role',
   u'character',
   u'screen',
   u'her.<br',
   u'film',
   u'remake',
   u'figure'],
  [u'comparison', u'fear', u'fear', u'film'],
  [u'thing', u'film', u'role', u'figure']],
 [[u'lot', u'review', u'movie'],
  [u'ex-con', u'family', u'target'],
  [u'syrup'],
  [u'memorandum', u'ham', u'eyebrow', u'bitch', u'way', u'cigarette'],
  [u'sort', u'accent', u'hybrid', u'cigar', u'cackle', u'atrocity'],
  [u'rhetoric', u'volume', u'bible', u'schtick'],
  [u'distracting', u'use', u'face'],
  [u'story', u'year', u'time', u'bighouse', u'assault'],
  [u'character', u'pass', u'information', u'sentence'],
  [u'criminal', u'act', u'lack', u'freedom', u'act'],
  [u'shortcoming', u'screenplay', u'predictability'],
  [u'harassment', u'rest', u'action'],
  [u'moment', u'exchange', u'theater', u'film', u'scene'],
  [u'approach', u'score', u'tarantula).<br', u'portion', u'flick'],
  [u'scene', u'snicker', u'sight'],
  [u'squawking',
   u'infidelity',
   u'thumb-flirting',
   u'kitchen',
   u'slip',
   u'substance'],
  [u'sight', u'blowhard', u'rambling', u'philosophy', u'prison'],
  [u'family.<br', u'thought', u'reviewer'],
  [u'manner', u'stalk', u'pain', u'one-liner'],
  [u'pot', u'water', u'sumpin'],
  [u'example.<br',
   u'fan',
   u'flick',
   u'thrill',
   u'year',
   u'film',
   u'experience',
   u'trip']],
 [[u'pain', u'film'],
  [u'family', u'monster', u'form', u'prison'],
  [u'family',
   u'band',
   u'beast',
   u'beast',
   u'creation',
   u'father',
   u'lawyer',
   u'trial'],
  [u'<br', u'fashion', u'father', u'monster', u'family', u'sin'],
  [u'daddy',
   u'figure',
   u'land',
   u'father',
   u'duty',
   u'kind',
   u'coda',
   u'picture',
   u'project',
   u'time',
   u'hand',
   u'fare'],
  [u'result',
   u'film',
   u'filmography',
   u'artist',
   u'failure',
   u'misfire',
   u'working',
   u'story',
   u'work',
   u'character',
   u'image',
   u'kind',
   u'core'],
  [u'carcass',
   u'director',
   u'cinema',
   u'fear',
   u'film',
   u'connection',
   u'rest',
   u'filmography'],
  [u'film', u'theme', u'redemption', u'cookie', u'cutter'],
  [u'watch',
   u'camera',
   u'whip',
   u'doorknob',
   u'window',
   u'attempt',
   u'tension',
   u'character',
   u'attention'],
  [u'watch', u'film', u'sense'],
  [u'showdown',
   u'boat',
   u'end',
   u'film',
   u'place',
   u'sound-stage',
   u'street',
   u'parade',
   u'place',
   u'context',
   u'family',
   u'house'],
  [u'sense', u'picture', u'film', u'space', u'kind', u'environment'],
  [u'<br', u'reason', u'camera', u'character'],
  [u'street',
   u'building',
   u'tour',
   u'future',
   u'cityscape',
   u'alien',
   u'desert',
   u'planet',
   u'director',
   u'sense',
   u'space',
   u'textbook',
   u'shot',
   u'combination'],
  [u'poetry', u'sense', u'space', u'film'],
  [u'style',
   u'shooting',
   u'way',
   u'prerequisite',
   u'action',
   u'film-making.<br',
   u'problem',
   u'gang',
   u'space',
   u'set',
   u'character',
   u'self',
   u'experiment',
   u'magnetism',
   u'actor',
   u'camera',
   u'moth',
   u'bulb.<br',
   u'b-movie',
   u'film'],
  [u'matte',
   u'painting',
   u'attempt',
   u'tension',
   u'silly',
   u'effect',
   u'fistfight',
   u'showdown'],
  [u'body', u'film', u'scene'],
  [u'sequence', u'thumb', u'mouth', u'kiss'],
  [u'kind', u'rape', u'girl', u'man', u'interest.<br', u'performance'],
  [u'tone', u'visual', u'work']],
 [[u'movie'], [u'movie', u'movie', u'character']],
 [[u'kind', u'music', u'person', u'movie'],
  [u'home', u'movie', u'mom', u'troupe', u'movie', u'it.<br'],
  [u'series', u'annoyance']],
 [[u'clich\xe9d'],
  [u'screen', u'chemistry'],
  [u'writing', u'line', u'custom'],
  [u'feeling', u'sadness', u'moment', u'sequel', u'emotion', u'audience'],
  [u'film', u'insult', u'quality', u'sort', u'drivel', u'installment'],
  [u'mask', u'sequel', u'time'],
  [u'case', u'ring']],
 [[u'writer', u'story', u'genre', u'movie'],
  [u'action', u'adventure', u'mess'],
  [u'movie'],
  [u'rating'],
  [u'movie', u'movie']],
 [[u'effect',
   u'movie',
   u'time',
   u'way',
   u'existance.<br',
   u'redefine',
   u'term',
   u'hand',
   u'bad".<br',
   u'charm',
   u'movie',
   u'thing',
   u'casting',
   u'lurch',
   u'sense',
   u'person',
   u'there.<br',
   u'combination',
   u'sf-western',
   u'gunman',
   u'sense',
   u'pain',
   u'person',
   u'shoot',
   u'acting',
   u'here).<br',
   u'movie',
   u'hunk-o-brutal']],
 [[u'film', u'failure'],
  [u'fan', u'idea', u'cheese', u'script'],
  [u'parody'],
  [u'yuck.<br', u'user', u'comment', u'rating', u'film']],
 [[u'you`ll', u'image', u'handful', u'person'],
  [u'problem', u'film', u'version', u'you`ll', u'black']],
 [[u'love', u'triangle', u'film', u'mystery'],
  [u'boxer', u'circus', u'boxer', u'partner'],
  [u'lot',
   u'character',
   u'actor',
   u'wedding',
   u'standing',
   u'aisle',
   u'church',
   u'register',
   u'shock',
   u'sight',
   u'man',
   u'lady',
   u'twin',
   u'course',
   u'aisle',
   u'wedding',
   u'feast'],
  [u'camera', u'angle', u'pace', u'use', u'symbol'],
  [u'look']],
 [[u'movie', u'egg'],
  [u'tv',
   u'series',
   u'premise',
   u'tv',
   u'series',
   u'confusing',
   u'tv',
   u'series',
   u'cast',
   u'actor',
   u'character',
   u'prank'],
  [u'premise', u'movie', u'trouble'],
  [u'stinker', u'time']],
 [[u'movie'],
  [u'material', u'army', u'life', u'laugh', u'star', u'movie', u'fall'],
  [u'couple', u'chuckle'],
  [u'role']],
 [[u'remake', u'comedy'],
  [u'towner', u'movie', u'face'],
  [u'anybody', u'performance', u'movie'],
  [u'character', u'person', u'work'],
  [u'statement', u'movie', u'line', u'credit', u'movie'],
  [u'line', u'producer', u'lack', u'cooperation', u'line', u'laugh'],
  [u'episode'],
  [u'movie', u'category']],
 [[u'comment',
   u'<br',
   u'fogey',
   u'generation',
   u'picture',
   u'etc.<br',
   u'year',
   u'pleasure',
   u'courtesy'],
  [u'travesty', u'reviewer', u'movie'],
  [u'minute', u'life', u'episode'],
  [u'doberman', u'et', u'al', u'film', u'pint']],
 [[u'year', u'world', u'war', u'state', u'segment', u'economy'],
  [u'time',
   u'draft',
   u'war',
   u'society',
   u'minigenre',
   u'notion',
   u'cleverness',
   u'midst',
   u'machine'],
  [u'machine', u'military', u'example', u'prisoner', u'war', u'situation'],
  [u'story',
   u'machine',
   u'science',
   u'fiction',
   u'reference',
   u'genre',
   u'testosterone',
   u'shot',
   u'action',
   u'reference',
   u'sibling.<br',
   u'trace',
   u'meaning',
   u'section'],
  [u'wave', u'catch', u'life', u'book', u'movie', u'case'],
  [u'man', u'crime', u'response', u'life'],
  [u'way', u'crack', u'control', u'freedom'],
  [u'<br', u'zone', u'american', u'context', u'zone', u'party', u'laugh'],
  [u'twist', u'misfit', u'fo', u'sort'],
  [u'adventure.<br', u'war'],
  [u'spot', u'remake'],
  [u'root', u'player'],
  [u'way', u'society', u'power.<br', u'evaluation', u'life']],
 [[u'movie'],
  [u'dreck', u'reputation', u'man'],
  [u'person', u'grip', u'fact', u'person', u'movie'],
  [u'movie', u'comedy'],
  [u'metal', u'jacket', u'excuse', u'service', u'comedy']],
 [[u'irishman'],
  [u'light'],
  [u'energy', u'wit', u'drive', u'upbringing', u'education', u'life'],
  [u'series',
   u"you'll",
   u'title',
   u'role',
   u'picture',
   u'actor',
   u'business',
   u'stripes.<br',
   u'identification',
   u'sort',
   u'nightmare',
   u'guy',
   u'uncle',
   u"croc's",
   u'stumbling',
   u'block',
   u'work',
   u'tv',
   u'screen',
   u'public',
   u'memory'],
  [u'percentage',
   u'crowd',
   u'character',
   u'run',
   u'syndication',
   u'revival',
   u'number',
   u'segment',
   u'rerun',
   u'time'],
  [u'film',
   u'source',
   u'mile',
   u'year',
   u'grouch',
   u'points.<br',
   u'today',
   u'year',
   u'fan',
   u'year',
   u'wit',
   u'talent'],
  [u'talent', u'guy', u'night', u'tv', u'quarter', u'century'],
  [u'identity',
   u'self',
   u'guy',
   u'me.<br',
   u'sitcom',
   u'cartoon',
   u'series',
   u'movie'],
  [u'howse',
   u'somebody',
   u'tv',
   u'cartoon',
   u'series',
   u'crusader',
   u'rabbit']],
 [[u'scottish', u'opinion', u'man', u'posterior', u'point', u'direction'],
  [u'man',
   u'doubt',
   u'writer',
   u'director',
   u'team',
   u'character',
   u'series',
   u'dateless',
   u'situation',
   u'comedy'],
  [u'thing',
   u'exercise',
   u'attempt',
   u'seller',
   u'attempt',
   u'opinion',
   u'career']],
 [[u'comedy'],
  [u'film',
   u'inspiration',
   u'role',
   u'army',
   u'sergeant',
   u'scam',
   u'nose',
   u'superior'],
  [u'life', u'platoon', u'enemy', u'base', u'act'],
  [u'couple', u'laugh', u'sheer', u'effort', u'material']],
 [[u'film', u'paper'],
  [u'comedy',
   u'lover',
   u'thriller',
   u'cross-breeding',
   u'gold',
   u'cast.<br',
   u'star',
   u'rope'],
  [u'script'],
  [u'ping-pong',
   u'romance',
   u'reason',
   u'cop-with-a-heart',
   u'guess',
   u'star-with-a-part']],
 [[u'visual', u'film'],
  [u'plot', u'film', u'boxer', u'girl', u'drama'],
  [u'talent', u'use', u'image'],
  [u'shot', u'symbol'],
  [u'jewelry', u'boxer', u'girl', u'boxer'],
  [u'arm', u'way', u'movement'],
  [u'boxing', u'scene', u'point-of-view', u'shot', u'time'],
  [u'film', u'insight', u'treatment', u'woman'],
  [u'woman',
   u'film',
   u'party',
   u'girl',
   u'offer',
   u'sex',
   u'crone',
   u'relationship'],
  [u'work', u'development', u'storyteller']],
 [[u'self', u'ticky', u'schtick'], [u'guy', u'chill']],
 [[u'premise', u'character', u'dialogue'],
  [u'<br',
   u'fan',
   u'accent',
   u'hour',
   u'pick',
   u'kewpie',
   u'doll',
   u'baby',
   u'puppy',
   u'kitten',
   u'creature'],
  [u'resemblance',
   u'being.<br',
   u'movie',
   u'opportunity',
   u'buddy',
   u'vacation',
   u'south']],
 [[u'actress',
   u'role',
   u'watching.<br',
   u'movie.<br',
   u'character',
   u'whiner',
   u'grating',
   u'nerve',
   u'credit',
   u'day'],
  [u'character']],
 [[u'film', u'premise', u'cartoon'],
  [u'reality', u'military', u'film', u'gender', u'equality'],
  [u'commentator', u'woman'],
  [u'man',
   u'woman',
   u'seal',
   u'week',
   u'program',
   u'session',
   u'gym',
   u'desire'],
  [u'dropout',
   u'rate',
   u'training',
   u'program',
   u'level',
   u'injury',
   u'training',
   u'harassment'],
  [u'shallowness', u'message', u'film'],
  [u'world', u'hour', u'training'],
  [u'film', u'thinking', u'time', u'description', u'training']],
 [[u'film'],
  [u'director'],
  [u'film', u'mark', u'career'],
  [u'film', u'girl', u'army'],
  [u'film'],
  [u'writer', u'inspiration', u'dialog', u'sense', u'action'],
  [u'person',
   u'project',
   u'type',
   u'film',
   u'attention',
   u'future',
   u'movie',
   u'mess']],
 [[u'film', u'film'],
  [u'film'],
  [u'sweat', u'lot', u'music', u'fight'],
  [u'idea', u'film', u'kind', u'script']],
 [[u'disappointment', u'master'],
  [u'story', u'female', u'training'],
  [u'training', u'existence', u'instructor', u'film', u'character'],
  [u'message', u'point', u'film'],
  [u'kind',
   u'statement',
   u'right',
   u'ability',
   u'scene',
   u'gun',
   u'fight',
   u'end',
   u'film.<br',
   u'gun',
   u'battle',
   u'desert'],
  [u'director', u'technique'],
  [u'film', u'battle', u'scene', u'plenty', u'skill'],
  [u'finale',
   u'shooting',
   u'killing.<br',
   u'movie',
   u'opinion',
   u'touch',
   u'director'],
  [u'format',
   u'couple',
   u'scene',
   u'sample',
   u'ability',
   u'film.<br',
   u'disappointment',
   u'classic',
   u'director']],
 [[u'course', u'woman', u'clich\xe9', u'movie'],
  [u'performance', u'movie', u'hell', u'minute'],
  [u'credit', u'movie', u'woman', u'right', u'propaganda', u'army'],
  [u'movie']],
 [[u'post',
   u'woman',
   u'background',
   u'comment',
   u'woman',
   u'life',
   u'man',
   u's".<br',
   u'mantra',
   u'history',
   u'biology'],
  [u'society', u'loss', u'male', u'population', u'speed'],
  [u'war', u'war', u'man'],
  [u'country',
   u'male',
   u'population',
   u'stalemate',
   u'society',
   u'loss',
   u'population'],
  [u'situation',
   u'coed',
   u'combat',
   u'unit',
   u'image',
   u'girl',
   u'soldier.<br']],
 [[u'script', u'insult', u'whomever', u'life'],
  [u'cinematography', u'slick', u'world', u'advertising'],
  [u'concept', u'style', u'film']],
 [[u'reviews',
   u'film',
   u'film',
   u'gem',
   u'person',
   u'film',
   u'window',
   u'person',
   u'film',
   u'window',
   u'etc.<br',
   u'bit',
   u'stretch',
   u'imagination',
   u'league',
   u'film',
   u'film',
   u'1920s',
   u'film'],
  [u'brand',
   u'director',
   u'dream',
   u'sequence',
   u'segment',
   u'editing',
   u'attention',
   u'career.<br',
   u'film',
   u'thing',
   u'spectacle',
   u'circus',
   u'manner',
   u'way',
   u'egg',
   u'fruit',
   u'crowd',
   u'person'],
  [u'circuse',
   u'person',
   u'sequence',
   u'film',
   u'attraction',
   u'circus',
   u'fighter',
   u'man',
   u'round',
   u'match',
   u'man',
   u'authority',
   u'boxing',
   u'ring',
   u'ring',
   u'wife'],
  [u'entertaining',
   u'challenge',
   u'love',
   u'woman',
   u'man',
   u'thoughtlessly.<br',
   u'example',
   u'scene',
   u'husband',
   u'home',
   u'night',
   u'building',
   u'car',
   u'kiss'],
  [u'kiss', u'fact', u'end', u'husband', u'eye', u'film', u'film', u'year'],
  [u'performance', u'trainer', u'stone', u'expressionism'],
  [u'bit', u'sample', u'work']],
 [],
 [[u'film',
   u'round',
   u'ex-girlfriend',
   u'house.<br',
   u'credibility',
   u'viewer',
   u'scenario',
   u'course'],
  [u'film', u'predictable.<br', u'action', u'film', u'film', u'life'],
  [u'fails.<br', u'film', u'storyline', u'acting', u'reason', u'work']],
 [[u'reviews', u'movie', u'person', u'movie'],
  [u'acting'],
  [u'tit'],
  [u'point', u'character'],
  [u'correctness'],
  [u'shoot', u'round', u'noise', u'course'],
  [u'wing',
   u'man',
   u'anytime.<br',
   u'premise',
   u'hold',
   u'tits.<br',
   u'film']],
 [[u'army', u'woman', u'man'], [u'hell', u'scene'], [u'person', u'danger']],
 [[u'point'],
  [u'liberal', u'feminist', u'woman'],
  [u'man',
   u'woman',
   u'different.regardless',
   u'fact',
   u'thing',
   u'order',
   u'person',
   u'feeling'],
  [u'man',
   u'birth',
   u'breast',
   u'feed',
   u'baby',
   u'strength',
   u'par',
   u'man',
   u'combat',
   u'situation'],
  [u'hoot', u'hell', u'upset', u'you.come', u'heart'],
  [u'movie', u'comedy']],
 [[u'start', u'movie'],
  [u'plot'],
  [u'unit'],
  [u'movie',
   u'woman',
   u'ability',
   u'type',
   u'task',
   u'woman',
   u'man',
   u'insult',
   u'intelligence'],
  [u'difference', u'sex', u'life']],
 [[u'age'],
  [u'person'],
  [u'film', u'showcase', u'wizardry'],
  [u'writing'],
  [u'dialogue'],
  [u'song'],
  [u'acting', u'actor'],
  [u'sin.<br', u'thing', u'obviousness'],
  [u'writer', u'way'],
  [u'child', u'movie', u'wit', u'film', u'year'],
  [u'dumbing-down', u'trash']],
 [[u'wolf'],
  [u'make-up', u'short', u'robe'],
  [u'minute', u'pedophile', u'dream'],
  [u'movie', u'joke', u'family', u'movie'],
  [u'daughter', u'family', u'quasi', u'kiddie', u'porn'],
  [u'family', u'film'],
  [u'advertising', u'effect'],
  [u'effect', u'budget']],
 [[u'reviews', u'screening', u'night'],
  [u'filmmaker', u'plant', u'reviews', u'way', u'individual'],
  [u'cult'],
  [u'theater',
   u'friend',
   u'family',
   u'production',
   u'crew',
   u'hour.<br',
   u'song',
   u'cut',
   u'honey',
   u'wolf',
   u'wood'],
  [u'tune', u'lines.<br', u'wolf', u'tale'],
  [u'pound', u'high', u'makeup', u'singing'],
  [u'guy', u'group'],
  [u'rest', u'actor', u'semi-adequate', u'script'],
  [u'adult', u'child', u'time', u'pixar".<br', u'set', u'actor']],
 [[u'creativeness', u'movie', u'writer', u'director', u'story', u'line'],
  [u'movie', u'child'],
  [u'budget', u'film', u'movie', u'movie'],
  [u'movie', u'chance', u'actor', u'money', u'chance', u'role', u'movie']],
 [[u'film',
   u'flaw',
   u'plot',
   u'scene',
   u'relevance',
   u'mastery',
   u'editing',
   u'use',
   u'image'],
  [u'expressionist',
   u'film',
   u'note',
   u'example',
   u'distortion',
   u'party',
   u'sequence',
   u'echo',
   u'title',
   u'plot',
   u'imagery.<br',
   u'core',
   u'match',
   u'example',
   u'boxing'],
  [u'hero',
   u'movement',
   u'wife',
   u'champion',
   u'corner',
   u'plot',
   u'pay-off',
   u'progress',
   u'match'],
  [u'insert', u'stopwatch', u'film', u'visual', u'feel'],
  [u'viewer',
   u'excitement',
   u'brutality',
   u'match',
   u'jealousy',
   u'it.<br',
   u'release',
   u'domain',
   u'company'],
  [u'selection', u'action'],
  [u'editing',
   u'quality',
   u'care',
   u'choice',
   u'music',
   u'match',
   u'work',
   u'sequence',
   u'film',
   u'obscurity'],
  [u'place', u'canon', u'list', u'boxing', u'film']],
 [[u'arm',
   u'chair',
   u'beer',
   u'bag',
   u'popcorn',
   u'bouyant',
   u'hope',
   u'muppet',
   u'night',
   u'entertainment'],
  [u'muppet'],
  [u'humour', u'song', u'plot'],
  [u'problem'],
  [u'tale', u'jinks', u'need', u'plot', u'fun']],
 [[u'movie', u'writer', u'commentary', u'chasm', u'character', u'audience'],
  [u'movie',
   u'means',
   u'communication',
   u'communication',
   u'audience',
   u'hell',
   u'director'],
  [u'director', u'purpose', u'movie', u'void', u'convention'],
  [u'shorthand', u'idea'],
  [u'way', u'idea'],
  [u'film', u'premise'],
  [u'puppet',
   u'personality',
   u'background',
   u'corpse',
   u'disinformation',
   u'mission',
   u'closing',
   u'day'],
  [u'fantasy', u'character', u'invention'],
  [u'disdain', u'convention', u'storytelling', u'film', u'idea'],
  [u'puppet', u'consistency', u'character', u'script'],
  [u'corpse'],
  [u'number', u'muppet', u'film', u'puppet']],
 [[u'movie', u'trash.<br', u'fun'],
  [u'innocence', u'time', u'well.<br', u'kid'],
  [u'hell'],
  [u'ripoff', u'charm', u'grace', u'that.<br', u'villain', u'crap'],
  [u'villain'],
  [u'hand',
   u'idiot',
   u'bicker',
   u'try',
   u'charisma',
   u'duo',
   u'charm',
   u'villain'],
  [u'entertaining'],
  [u'movie'],
  [u'feeling', u'emotion'],
  [u'masterpiece'],
  [u'person', u'movie'],
  [u'sequel',
   u'rip-off',
   u'trap',
   u'character',
   u'kid',
   u'robber',
   u'crap',
   u'garbage']],
 [[u'film',
   u'idea',
   u'head',
   u'plot',
   u'kid',
   u'villain',
   u'stupidity',
   u'trap'],
  [u'film', u'rock'],
  [u'person', u'film', u'plot']],
 [[u'poor,poor', u'criminal', u'home', u'movie'],
  [u'trap',
   u'excuse',
   u'idea',
   u'person',
   u'movie',
   u'paycheck',
   u'buck',
   u'week'],
  [u'movie'],
  [u'use', u'eye', u'way'],
  [u'person', u'movie']],
 [[u'movie'],
  [u'thing', u'gun', u'toy', u'car', u'house'],
  [u'movie', u'terrorist']],
 [[u'particular', u'movie', u'chest', u'cavity', u'spoon'],
  [u'home', u'bit', u'excuse', u'film', u'bid', u'commercialization'],
  [u'kind', u'person', u'movie', u'waste', u'time', u'experience']],
 [[u'cream', u'crop', u'stuff'],
  [u'fact', u'laugh', u'stupidity'],
  [u'movie', u'plot'],
  [u'chip', u'control', u'car'],
  [u'stuff.<br', u'action', u'boobytrap', u'boobytrap'],
  [u'smile', u'terrorist', u'kid'],
  [u'bird', u'relief', u'bunch'],
  [u'performance'],
  [u'kid',
   u'terrorist',
   u'movie',
   u'credit',
   u'street',
   u'person',
   u'man',
   u'kid'],
  [u'<br', u'movie'],
  [u'kid', u'reason']],
 [[u'curiosity'],
  [u'trailer', u'plot', u'movie', u'hour', u'minute', u'life', u'dollar'],
  [u'movie',
   u'disaster',
   u'embarrassment',
   u'movie',
   u'ignorance',
   u'reality'],
  [u'example', u'kid', u'control', u'race', u'car', u'neighborhood', u'house'],
  [u'signal', u'circumstance'],
  [u'logic',
   u'concept',
   u'electronic',
   u'dictate',
   u'race',
   u'car',
   u'street',
   u'house',
   u'street'],
  [u'trait', u'lack', u'intelligence', u'criminal', u'possess'],
  [u'movie', u'criminal', u'rocket', u'scientist'],
  [u'kid', u'person', u'movie', u'terrorist'],
  [u'leader', u'pistol', u'pistol', u'difference'],
  [u'glove'],
  [u'sense', u'sight'],
  [u'trap', u'criminal'],
  [u'laugh', u'result', u'trap'],
  [u'laugh', u'eyes.<br', u'movie', u'movie', u'movie']],
 [[u'ripoff', u'home', u'movie'],
  [u'movie',
   u'sequel',
   u'character',
   u'actor',
   u'sequel',
   u'character',
   u'actor'],
  [u'home', u'movie', u'home', u'movie'],
  [u'sequel']],
 [[u'effort'],
  [u'screenplay', u'film', u'story', u'structure'],
  [u'boxing',
   u'match',
   u'carnival',
   u'champ',
   u'challenger',
   u'audience',
   u'prizefighter'],
  [u'movie', u'character', u'love', u'triangle', u'girl', u'boxer'],
  [u'rest',
   u'film',
   u'buildup',
   u'rematch',
   u'man',
   u'time',
   u'heavyweight',
   u'crown'],
  [u'film', u'talent', u'cinematography', u'placement'],
  [u'detractor', u'film', u'art', u'boxing', u'match'],
  [u'match', u'result']],
 [[u'reviews', u'sum'],
  [u'number', u'reason', u'talent', u'movie', u'acting'],
  [u'storyline', u'joke', u'chip', u'terrorist', u'quest'],
  [u'rent', u'tow'],
  [u'<br', u'movie'],
  [u'home', u'time', u'family', u'comedy', u'movie', u'joke', u'plot']],
 [[u'plane', u'train', u'automobile', u'comedy', u'thing'],
  [u'year', u'plot', u'home', u'sequel', u'film'],
  [u'crook'],
  [u'congratulation', u'change', u'series'],
  [u'metal', u'chair', u'barbell', u'paint', u'haaaaaaaa', u'kid'],
  [u'departure', u'player', u'film', u'routine', u'surprise', u'home']],
 [[u'figure', u'movie', u'home', u'empire'],
  [u'spy',
   u'missile',
   u'guidance',
   u'computer',
   u'chip',
   u'airport',
   u'toy',
   u'car'],
  [u'baggage', u'confusion', u'car'],
  [u'spy', u'attention', u'device', u'booby-trap', u'house'],
  [u'home'],
  [u'home', u'character', u'movie', u'series', u'risk']],
 [[u'home', u'film', u'sequel', u'setting'],
  [u'degree', u'course', u'formula', u'movie', u'time', u'plot'],
  [u'score',
   u'trap',
   u'piece',
   u'score',
   u'almost-but-not-quite-as-good',
   u'score'],
  [u'music'],
  [u'plot', u'franchise', u'movie', u'worse', u'example', u'character'],
  [u'acting'],
  [u'thieve', u'fun', u'spy-stuff', u'spy', u'flick'],
  [u'fact', u'them(and', u'trap', u'attempt', u'film'],
  [u'idea',
   u'thieve',
   u'mission',
   u'tad',
   u'child',
   u'joke',
   u'time',
   u'series'],
  [u'plot'],
  [u'exposition', u'child'],
  [u'stuff'],
  [u'sibling', u'personality', u'film'],
  [u'criminal', u'violence'],
  [u'fan', u'series']],
 [[u'home', u'home', u'movie', u'role', u'villain'],
  [u'plot', u'home', u'film'],
  [u'villain'],
  [u'film', u'trap', u'scene', u'car'],
  [u'slapstick', u'humour', u'boy', u'villain', u'impact', u'film'],
  [u'film', u'film', u'holiday', u'feeling', u'subplot', u'film'],
  [u'comedy', u'laugh', u'character'],
  [u'film', u'boring'],
  [u'holiday', u'family', u'film', u'comedy', u'home', u'movie']],
 [[u'guy',
   u'tag',
   u'line',
   u'movie',
   u'truth',
   u'it.<br',
   u'film',
   u'classic'],
  [u'home', u'film'],
  [u'sharkboy'],
  [u'actor',
   u'performance',
   u'fault',
   u'writing',
   u'vocabulary',
   u'expression'],
  [u'prank', u'crook', u'chicken', u'pox'],
  [u'choice', u'teacher', u'film', u'day'],
  [u'thing', u'cast']],
 [[u'home', u'movie', u'cast', u'joke'],
  [u'story'],
  [u'child'],
  [u'kid', u'year', u'mother', u'house'],
  [u'time'],
  [u'home']],
 [[u'film',
   u'premise',
   u'millionaire',
   u'oil',
   u'fume',
   u'whiskey',
   u'problem',
   u'parking',
   u'lot'],
  [u'summary',
   u'oil',
   u'business',
   u'cahoot',
   u'gummint',
   u'cahoot',
   u'despot',
   u'pool',
   u'dealing',
   u'sons-of-(insert',
   u'word',
   u'toe',
   u'line',
   u'way'],
  [u'person'],
  [u'terrorism',
   u'result',
   u'poverty',
   u'globalization',
   u'multinational',
   u'world',
   u'takeover'],
  [u'profile',
   u'perpetrators.<br',
   u'tissue',
   u'half-truth',
   u'hologram',
   u'vermicelli',
   u'story',
   u'strand',
   u'twist',
   u'turn',
   u'whirl',
   u'gloopy',
   u'circumlocution',
   u'insignificance',
   u'viewer',
   u'conclusion',
   u'<br'],
  [u'director', u'joke', u'camera'],
  [u'film', u'deal', u'corruption', u'business', u'state', u'du', u'pouvoir']],
 [[u'movie'],
  [u'advancement'],
  [u'character', u'development'],
  [u'point'],
  [u'movie',
   u'terrorist',
   u'guy',
   u'bomb',
   u'opinion',
   u'capitalist',
   u'storyboard',
   u'advancement',
   u'death'],
  [u'guy', u'point', u'movie'],
  [u'summary', u'attempt', u'style', u'movie', u'movie'],
  [u'home', u'piece']],
 [[u'sat', u'hour', u'drivel'],
  [u'film', u'twaddle'],
  [u'dud', u'dvd', u'film', u'sentence', u'mid-air'],
  [u'film'],
  [u'pity', u'cast', u'material']],
 [[u'movie', u'plot'],
  [u'course',
   u'plot',
   u'girl',
   u'love',
   u'man',
   u'silver',
   u'laughter',
   u'fear',
   u'compassion',
   u'anguish'],
  [u'way',
   u'crowds',
   u'strength',
   u'attraction',
   u'girl',
   u'man',
   u'element',
   u'technique',
   u'mind',
   u'movies(north'],
  [u'master', u'thirty']],
 [[u'comment',
   u'syriana',
   u'family',
   u'film',
   u'home',
   u'waste',
   u'time',
   u'space.<br',
   u'film',
   u'script',
   u'writer'],
  [u'story',
   u'manner',
   u'vignette',
   u'story-line',
   u'dozen',
   u'story-line',
   u'audience',
   u'viewing'],
  [u'viewing',
   u'clarity',
   u'precision',
   u'plot',
   u'story-line',
   u'characterisation',
   u'beginning',
   u'middle',
   u'end.<br',
   u'kind',
   u'presentation',
   u'experience',
   u'restaurant',
   u'unintelligent',
   u'extreme.<br',
   u'goodness',
   u'tv',
   u'presentation',
   u'film',
   u'noir',
   u'1940',
   u'writer',
   u'director',
   u'actor',
   u'value',
   u'story',
   u'diction',
   u'something.<br',
   u'family']],
 [[u'film', u'night', u'lot', u'reviews', u'source'],
  [u'work',
   u'film.<br',
   u'role',
   u'actor',
   u'film',
   u'film',
   u'jump',
   u'story',
   u'roles.<br',
   u'buff',
   u'corruption',
   u'world',
   u'government',
   u'film',
   u'movie',
   u'watcher',
   u'film',
   u'boring',
   u'place',
   u'cinema',
   u'entrance',
   u'fee.<br',
   u'politic']],
 [[u'politic', u'opinion', u'movie'],
  [u'movie', u'bush', u'oil', u'propaganda', u'credit', u'credit'],
  [u'film', u'night', u'kind', u'film', u'science', u'collage'],
  [u'cinematography', u'acting', u'good.<br', u'plot'],
  [u'matter',
   u'way',
   u'piece',
   u'story',
   u'line',
   u'movie',
   u'character',
   u'story',
   u'scene',
   u'sequence',
   u'movie',
   u'time',
   u'depth',
   u'story',
   u'idea',
   u'sense',
   u'argument',
   u'criticism',
   u'argument',
   u'critique']],
 [[u'movie',
   u'thriller',
   u'sub-plot',
   u'climax',
   u'end',
   u'yawn.<br',
   u'writing',
   u'pace',
   u'character'],
  [u'gym', u'line', u'teleprompter.<br', u'movie', u'business', u'oil']],
 [[u'guy', u'brain'],
  [u'clue', u'person'],
  [u'nail'],
  [u'attorney', u'dad', u'mystery'],
  [u'cricket', u'line', u'hour'],
  [u'wife', u'beard', u'pound']],
 [[u'film'],
  [u'film'],
  [u'character', u'story', u'line'],
  [u'award', u'film', u'half', u'movie'],
  [u'forwarding', u'confusion', u'chance', u'improvement'],
  [u'hour'],
  [u'day']],
 [[u'movie'],
  [u'track', u'person', u'motive', u'character', u'uninteristing'],
  [u'<br', u'minute', u'feature', u'kick', u'giggle', u'person'],
  [u'time', u'movie'],
  [u'lecture', u'awareness', u'blery', u'eye', u'sandman']],
 [[u'director', u'movie', u'documentary'],
  [u'plot', u'agent', u'oil', u'prince', u'prince'],
  [u'element', u'movie'],
  [u'kid', u'result', u'response', u'father', u'person', u'son', u'death'],
  [u'lawyer', u'friend'],
  [u'kid', u'suicide', u'terrorist', u'ship.<br', u'movie'],
  [u'eye', u'movie']],
 [[u'movie'],
  [u'way', u'disgust.<br', u'movie'],
  [u'acting', u'portrayal'],
  [u'plot', u'fashion', u'attention'],
  [u'sub', u'plot', u'story', u'plot'],
  [u'subject', u'actor', u'flop']],
 [[u'film', u'oil', u'industry', u'mind'],
  [u'unintelligent', u'politic', u'teen', u'film', u'film', u'message'],
  [u'syriana', u'person'],
  [u'film', u'dribble', u'acclaim', u'cast'],
  [u'film', u'mess'],
  [u'disaster.<br', u'actor', u'thought', u'performance', u'script', u'actor'],
  [u'performance', u'performance'],
  [u'character', u'history', u'character'],
  [u'deer', u'headlight', u'confusion', u'script'],
  [u'billing', u'anymore.<br', u'cast', u'story', u'sense'],
  [u'description', u'plot'],
  [u'missile',
   u'problem',
   u'heir',
   u'oil',
   u'contract',
   u'company',
   u'immigrant',
   u'worker',
   u'firm',
   u'oil',
   u'contract'],
  [u'fall', u'guy', u'sort', u'cross'],
  [u'economist', u'death', u'son', u'contract', u'sheik'],
  [u'group'],
  [u'man', u'movie', u'tear', u'matter', u'hour', u'half'],
  [u'opinion', u'entertainment', u'film', u'hour']],
 [[u'screenplay', u'deal', u'picture', u'love', u'triangle'],
  [u'glance', u'update', u'morality', u'comedy', u'picture'],
  [u'idea',
   u'motif',
   u'thriller',
   u'tool',
   u'suspense.<br',
   u'student',
   u'expressionist',
   u'style',
   u'editing',
   u'style',
   u'impact'],
  [u'shot', u'ride', u'tempo'],
  [u'editing',
   u'style',
   u'sound',
   u'example',
   u'shot',
   u'bell',
   u'sound',
   u'image',
   u'contrast',
   u'film',
   u'title',
   u'card'],
  [u'imagery',
   u'faith',
   u'audience',
   u'meaning',
   u'bulk',
   u'character',
   u'speech'],
  [u'symbolism',
   u'angle',
   u'timing',
   u'point-of-view',
   u'shot',
   u'performance'],
  [u'expressionist', u'device', u'exposure', u'honourable', u'actor'],
  [u'role'],
  [u'spite', u'talent', u'bit', u'role', u'ballet', u'dancer', u'pugilist'],
  [u'fact', u'boxer'],
  [u'rival', u'career', u'role'],
  [u'performance', u'shame', u'career', u'era'],
  [u'relief', u'fight', u'scene', u'moment', u'silent-era'],
  [u'fight',
   u'shot',
   u'action',
   u'middle',
   u'close-up',
   u'point-of-view',
   u'shot'],
  [u'aim',
   u'audience',
   u'career',
   u'secret',
   u'success',
   u'viewer',
   u'character',
   u'fear',
   u'paranoia.<br',
   u'recognition'],
  [u'work', u'picture', u'feature']],
 [[u'trailer',
   u'thriller-lover',
   u'breath',
   u'movie',
   u'dip',
   u'policy-making',
   u'relation',
   u'oil',
   u'power',
   u'corruption',
   u'angle'],
  [u'pace', u'character', u'editing', u'logic', u'review', u'end']],
 [[u'film', u'kernel', u'story'],
  [u'film',
   u'story',
   u'ending',
   u'satisfying',
   u'couple',
   u'bar',
   u'fight',
   u'relationship',
   u'spark',
   u'campfire'],
  [u'rescue', u'scene', u'computer', u'generation', u'scenario', u'backstory'],
  [u'hand', u'acting', u'watch'],
  [u'female', u'character'],
  [u'female', u'sailor', u'rescue', u'center', u'camera', u'minute', u'film'],
  [u'film']],
 [[u'movie'], [u'story'], [u'type', u'movie', u'night'], [u'home']],
 [[u'film', u'boring'], [u'laugh', u'for.<br', u'humour', u'film']],
 [[u'comedy', u'time'],
  [u'producer', u'movie', u'hour', u'half', u'life', u'minute'],
  [u'voice', u'start', u'rest', u'movie'],
  [u'line', u'movie'],
  [u'ground', u'category'],
  [u'spectrum', u'career.<br', u'movie', u'plague.<br']],
 [[u'sketch', u'actor', u'movie', u'industry', u'sort', u'control'],
  [u'character', u'speed'],
  [u'rendition'],
  [u'comedian'],
  [u'vet', u'office']],
 [[u'expectation'],
  [u'hope', u'dirt', u'comedy', u'snl', u'member'],
  [u'film', u'preview'],
  [u'actor', u'movie', u'energy'],
  [u'skit', u'cast', u'member'],
  [u'case', u'script', u'scene', u'mugging'],
  [u'scene', u'act'],
  [u'type', u'comedy'],
  [u'fool'],
  [u'laugh', u'fact', u'thing', u'film'],
  [u'<br', u'rest', u'member', u'role'],
  [u'line'],
  [u'movie'],
  [u'movie', u'role'],
  [u'<br', u'time', u'laugh'],
  [u'gag'],
  [u'minute', u'fart'],
  [u'gag', u'gag', u'hell', u'lot'],
  [u'example', u'man', u'drug', u'bust'],
  [u'comedy', u'time'],
  [u'thing', u'trailer']],
 [[u'laugh'],
  [u'comedy', u'role', u'night', u'roxbury'],
  [u'movie', u'humor']],
 [[u'jaw',
   u'comedy',
   u'performance',
   u'character',
   u'shame',
   u'premise',
   u'idea'],
  [u'page', u'script']],
 [[u'spoiler', u'spoiler', u'credit', u'movie', u'straight'],
  [u'movie', u'kindergarten'],
  [u'sheer',
   u'greatness',
   u'movie',
   u'theater',
   u'ticket',
   u'dozen',
   u'tickets.<br',
   u'movie',
   u'viewing'],
  [u'feeling'],
  [u'story', u'mortality', u'author'],
  [u'story', u'story', u'level', u'thing', u'life'],
  [u'viewing', u'mystery'],
  [u'watch', u'twist', u'end', u'guard', u'agent', u'agent', u'closet'],
  [u'hell', u'talent', u'character', u'maze', u'situation'],
  [u'performance', u'personality', u'scene', u'timing'],
  [u'master', u'drama', u'audience', u'feeling', u'face'],
  [u'expression', u'life', u'way'],
  [u'example',
   u'scene',
   u'brother',
   u'expression',
   u'injustice',
   u'alienation',
   u'face'],
  [u'moment', u'eye', u'house.<br', u'hero'],
  [u'story', u'proportion', u'writer', u'project'],
  [u'storytelling', u'structuring', u'pulp', u'look', u'skit'],
  [u'story', u'grip', u'hair', u'swallow'],
  [u'end',
   u'experience',
   u'person',
   u'worldviews',
   u'idea',
   u'question',
   u'mind:<br']],
 [[u'use',
   u'object',
   u'form',
   u'editing',
   u'position',
   u'character',
   u'scene',
   u'genius'],
  [u'way',
   u'wife',
   u'corner',
   u'ring',
   u'fight',
   u'editing',
   u'wedding',
   u'ring',
   u'finger',
   u'bit',
   u'today',
   u'standard',
   u'era',
   u'volume',
   u'story',
   u'word']],
 [[u'branch'],
  [u'branch'],
  [u'matter', u'bit', u'room', u'floor'],
  [u'value',
   u'movie',
   u'study',
   u'movie',
   u'distribution',
   u'repaired.<br',
   u'dozen',
   u'reviews'],
  [u'number',
   u'reviews',
   u'waste',
   u'time',
   u'suspicion',
   u'person',
   u'title'],
  [u'money', u'rating', u'list', u'movie', u'time']],
 [[u'time', u'movie', u'cast', u'member'], [u'manner', u'hour'], [u'manner']],
 [[u'movie'],
  [u'movie'],
  [u'hour',
   u'thinking',
   u'disc',
   u'case.<br',
   u'movie',
   u'attempt',
   u'mafia',
   u'comedy.<br',
   u'problem',
   u'audience',
   u'laugh',
   u'plot',
   u'excuse',
   u'scene'],
  [u'subtlety', u'credulity', u'mannerism', u'role', u'story'],
  [u'scene', u'event', u'set', u'scene'],
  [u'comedy',
   u'disaster',
   u'title',
   u'character',
   u'character',
   u'motivation',
   u'event',
   u'situation',
   u'character'],
  [u'screwing',
   u'attempt',
   u'laugh',
   u'audience.<br',
   u'character',
   u'character',
   u'movie',
   u'behaviour',
   u'laugh',
   u'comedy',
   u'scene',
   u'joke',
   u'movie']],
 [[u'laugh', u'minute', u'film'], [u'screen'], [u'movie']],
 [[u'movie'],
  [u'theatre', u'word', u'mouth'],
  [u'urge', u'slam', u'head', u'theatre', u'wall', u'hour', u'half'],
  [u'humor', u'grade', u'level', u'acting', u'plot']],
 [[u'film'],
  [u'reason', u'film'],
  [u'character'],
  [u'gag'],
  [u'sort', u'joke', u'friend', u'vet'],
  [u'life', u'loop', u'family', u'trace', u'family', u'crime', u'history'],
  [u'agent', u'peg', u'duty', u'family'],
  [u'mishap', u'mayhem', u'hijixn'],
  [u'love',
   u'partner',
   u'straight',
   u'family',
   u'life',
   u'again.<br',
   u'film',
   u'actor',
   u'joke'],
  [u'limitation',
   u'actor',
   u'note',
   u'slapstick',
   u'routine',
   u'minute',
   u'film'],
  [u'movie', u'slap', u'stick', u'humor'],
  [u'joke', u'movie', u'torture.<br', u'problem', u'movie', u'lack'],
  [u'mafia', u'brother', u'guy', u'sch-tick', u'plenty', u'joke', u'time'],
  [u'cast', u'talent', u'joke'],
  [u'thing', u'body']],
 [[u'world', u'portrayer', u'incompetence'],
  [u'anchor', u'disaster'],
  [u'mix', u'gangster', u'charm', u'man', u'foolishness'],
  [u'performance',
   u'boss',
   u'female',
   u'agent',
   u'head',
   u'glass',
   u'ceiling',
   u'advisor',
   u'plot',
   u'concept',
   u'possibility',
   u'hand',
   u'vehicle'],
  [u'brother', u'proven', u'capability.<br', u'scene', u'way'],
  [u'movie'],
  [u'level', u'wit', u'slapstick'],
  [u'reference', u'adult'],
  [u'entendre'],
  [u'way', u'9-year-old', u'taste', u'fascination', u'body', u'function']],
 [[u'road', u'movie', u'relief', u'performance'],
  [u'slapstick', u'sentimentality', u'drop', u'hat', u'film', u'peril']],
 [[u'preview', u'movie'],
  [u'producer', u'message', u'parent', u'life', u'way', u'message'],
  [u'time', u'silly', u'couple'],
  [u'end', u'mishap', u'movie', u'total', u'line', u'dialogue', u'movie']],
 [[u'movie'], [u'film'], [u'story', u'goal', u'fun.<br']],
 [[u'student', u'reason', u'film'],
  [u'heat',
   u'dust',
   u'clime',
   u'story',
   u'symbolism',
   u'inversion',
   u'theme',
   u'land'],
  [u'memory', u'subjectivity', u'outsider'],
  [u'year',
   u'forerunner',
   u'genre',
   u'film',
   u'theme',
   u'colonial',
   u'space',
   u'clueless',
   u'nuance',
   u'culture'],
  [u'work', u'theme', u'indochine', u'comparison', u'boring'],
  [u'action', u'violence'],
  [u'struggle'],
  [u'film']],
 [[u'day', u'office'],
  [u'comedy', u'day', u'office'],
  [u'also.<br', u'comedian', u'role', u'advertising', u'exec', u'count'],
  [u'work',
   u'tv',
   u'problem',
   u'movie',
   u'couple',
   u'everybody',
   u'life',
   u'bliss',
   u'sort',
   u'city',
   u'world'],
  [u'movie',
   u'comedy',
   u'thing',
   u'trip',
   u'situation',
   u'sight',
   u'gag',
   u'environment'],
  [u'version', u'tangent', u'audience', u'day', u'excess'],
  [u'example', u'star', u'appeal', u'player', u'cameo', u'mayor'],
  [u'walking',
   u'advertisement',
   u'face',
   u'role',
   u'time',
   u'prancing',
   u'cross-dresser',
   u'hotel',
   u'staff',
   u'customer',
   u'role'],
  [u'process',
   u'damage',
   u'memory',
   u'comedy',
   u'series',
   u'bar',
   u'<br',
   u'movie'],
  [u'city', u'place', u'couple', u'life'],
  [u'thing',
   u'glitz',
   u'moxie',
   u'<br',
   u'couple',
   u'moxie',
   u'fray',
   u'dream',
   u'life',
   u'liberty',
   u'pursuit',
   u'happiness'],
  [u'movie', u'reason', u'producer'],
  [u'comedy', u'movie', u'travesty']],
 [[u'career', u'gamin', u'year'],
  [u'<br',
   u'film',
   u'year',
   u'disaster',
   u'lead',
   u'exposition',
   u'trademark',
   u'tics',
   u'effort',
   u'script',
   u'directing'],
  [u'performer', u'mess', u'fault', u'failure', u'rest', u'cast', u'picture']],
 [[u'film', u'waste', u'star', u'stardom'],
  [u'moment',
   u'hotel',
   u'manager',
   u'fall',
   u'chair',
   u'laughter',
   u'dance',
   u'heel',
   u'mink',
   u'coat',
   u'hat']],
 [[u'movie'],
  [u'star', u'work', u'comedy', u'time.<br', u'movie'],
  [u'mind', u'joke'],
  [u'actor', u'script', u'misfortune'],
  [u'time',
   u'duration',
   u'film',
   u'entertainment',
   u'movie',
   u'life',
   u'comment',
   u'generalization'],
  [u'film'],
  [u'hand', u'finger', u'production'],
  [u'comedy'],
  [u'entertainment', u'money', u'watch', u'swirl', u'toilet']],
 [[u'couple', u'movie', u'year', u'turn', u'story', u'established.<br']],
 [[u'idea'],
  [u'watch', u'movie', u'truth', u'lead'],
  [u'slapstick', u'movie', u'jerk', u'sort', u'character'],
  [u'member.<br', u'plot'],
  [u'character', u'bit', u'sense'],
  [u'right'],
  [u'premise', u'message', u'person', u'theme', u'movie.<br', u'summation']],
 [[u'attempt',
   u'movie',
   u'cast',
   u'material',
   u'level.<br',
   u'chemistry',
   u'effort']],
 [[u'movie'],
  [u'towner', u'course', u'script'],
  [u'reason', u'script', u'film', u'time', u'time'],
  [u'direction', u'joke', u'joke', u'couple', u'sex', u'park'],
  [u'ceremony', u'light', u'mugging', u'bit', u'slap', u'stick'],
  [u'lens'],
  [u'laugh']],
 [[u'movie', u'cast', u'script', u'director', u'comedy', u'masterpiece'],
  [u'bore-a-thon'],
  [u'movie'],
  [u'genius',
   u'minute',
   u'waste',
   u'celluloid.<br',
   u'screenplay',
   u'version',
   u'fiasco',
   u'defamation',
   u'humor!<br',
   u'job',
   u'producer'],
  [u'director', u'editor', u'scene'],
  [u'thing', u'surprise', u'movie']],
 [[u'word', u'hatred', u'film'],
  [u'word',
   u'expletive',
   u'sex',
   u'scene',
   u'drug',
   u'stereotyping',
   u'norm',
   u'acting',
   u'et']],
 [[u'film',
   u'alien',
   u'abyss',
   u'confidant',
   u'director',
   u'action',
   u'science-fiction'],
  [u'story', u'quality', u'film'],
  [u'stroke', u'brilliance'],
  [u'film',
   u'room',
   u'surprise',
   u'plot',
   u'development',
   u'character',
   u'development',
   u'story'],
  [u'story',
   u'voyager',
   u'voyage',
   u'legend',
   u'challenge',
   u'entertaining',
   u'film'],
  [u'acting',
   u'superstar',
   u'release',
   u'film',
   u'film',
   u'character',
   u'lot',
   u'film',
   u'story',
   u'story'],
  [u'eye', u'theater', u'home'],
  [u'music'],
  [u'composer', u'soundtrack', u'film', u'audience'],
  [u'song', u'phenomenon', u'film'],
  [u'problem', u'problem', u'dialogue', u'way', u'point'],
  [u'masterpiece', u'epic', u'sweep', u'journey', u'lifetime']],
 [[u'debut', u'brave'],
  [u'depiction',
   u'life',
   u'end',
   u'colonialist',
   u'relationship',
   u'man',
   u'woman',
   u'servant',
   u'film',
   u'object',
   u'desire',
   u'oppression',
   u'film',
   u'territory',
   u'beginning'],
  [u'picture',
   u'life',
   u'series',
   u'character',
   u'relationship',
   u'viewer',
   u'screen'],
  [u'mood', u'film', u'camera-work', u'lack', u'lighting.<br', u'discourse']],
 [[u'time', u'history', u'lesson'],
  [u'acting', u'lot', u'sex', u'minute', u'film']],
 [[u'decline', u'success', u'mess'],
  [u'movie', u'cast', u'disappointment.<br', u'point'],
  [u'swear', u'sex', u'wife'],
  [u'character', u'stereotype.<br', u'film']],
 [[u'actor',
   u'character',
   u'male',
   u'female',
   u'foible',
   u'group',
   u'culture'],
  [u'immigrant', u'group'],
  [u'scene', u'college', u'production', u'guy', u'low-rent', u'street'],
  [u'problem', u'flick'],
  [u'time']],
 [[u'critic',
   u'darling',
   u'film',
   u'message',
   u'approach',
   u'critic',
   u'formula',
   u'film',
   u'stuff',
   u'different.<br'],
  [u'cinematography', u'editing', u'style'],
  [u'portrayal', u'pc', u'set', u'italian-american'],
  [u'impression',
   u'guy',
   u'fight',
   u'caricature',
   u'character',
   u'exception).<br',
   u'anybody',
   u'movie',
   u'figure'],
  [u'character',
   u'integrity',
   u'film',
   u'course',
   u'person',
   u'crowd',
   u'clique!)<br',
   u'lifetime',
   u'pass',
   u'game'],
  [u'film',
   u'camera',
   u'time',
   u'self',
   u'drivel',
   u'critic',
   u'ohhhh',
   u'clothe']],
 [[u'movie', u'movie', u'effect', u'society'],
  [u'garbage',
   u'tension',
   u'mob-justice',
   u'inability',
   u'citizen',
   u'choice',
   u'pressure',
   u'peer'],
  [u'opinion.<br',
   u'movie',
   u'format',
   u'focus',
   u'sub-plots.<br',
   u'video',
   u'case',
   u'theatre'],
  [u'movie']],
 [[u'movie', u'waste', u'hour'],
  [u'movie', u'killing'],
  [u'dog', u'trouble', u'movie', u'patron', u'laughter'],
  [u'movie'],
  [u'sex', u'scene', u'plot'],
  [u'sex', u'movie', u'point', u'movie']],
 [[u'mess', u'film', u'thrashing', u'thing'],
  [u'film', u'abundance', u'image'],
  [u'film', u'fact', u'drama'],
  [u'crime',
   u'caper',
   u'film',
   u'example',
   u'violence',
   u'profanity',
   u'sleaze',
   u'film',
   u'work',
   u'film',
   u'entertainment',
   u'value'],
  [u'hand',
   u'dramas',
   u'saving',
   u'private',
   u'ryan',
   u'unpleasantness',
   u'film',
   u'plot',
   u'character',
   u'end',
   u'goal',
   u'audience',
   u'story',
   u'character'],
  [u'summer',
   u'sensationalism',
   u'sleaze',
   u'commentary',
   u'trash',
   u'epic',
   u'sam',
   u'drama',
   u'character',
   u'stereotype'],
  [u'plot',
   u'impact',
   u'hysteria',
   u'murder',
   u'resident',
   u'north',
   u'neighborhood',
   u'murder'],
  [u'local', u'mix', u'personality', u'wheel', u'stereotype'],
  [u'man', u'goombahs'],
  [u'woman', u'split', u'girl', u'girl'],
  [u'payback',
   u'year',
   u'stereotyping',
   u'wheeling',
   u'stereotype',
   u'critic'],
  [u'example',
   u'resident',
   u'neighborhood',
   u'bunch',
   u'stereotype',
   u'critic',
   u'stereotyping'],
  [u'character',
   u'film',
   u'attempt',
   u'commentary.<br',
   u'exception',
   u'cast'],
  [u'cast', u'motion', u'scriptwise'],
  [u'miscasting'],
  [u'comedian', u'character', u'impersonation', u'night'],
  [u'guy', u'actor', u'serial', u'killer'],
  [u'performance', u'attention', u'neighborhood'],
  [u'performance', u'cinematography', u'film', u'virtues.<br']],
 [[u'majority'],
  [u'bit'],
  [u'rise',
   u'fall',
   u'serial',
   u'killer',
   u'bit',
   u'relationship',
   u'lifestyle',
   u'mafia',
   u'type'],
  [u'story', u'end', u'story'],
  [u'killer', u'film'],
  [u'><br', u'point'],
  [u'scene',
   u'killer',
   u'saturation',
   u'acting',
   u'throughout.<br',
   u'story',
   u'killing'],
  [u'end.<br']],
 [[u'film', u'effect', u'painting', u'caricature', u'group'],
  [u'problem', u'matter', u'kind', u'story'],
  [u'caricature', u'them.<br', u'caricature', u'home', u'ears', u'nose'],
  [u'character', u'film', u'lifestyle'],
  [u'storyline', u'character', u'film'],
  [u'run', u'time.<br', u'strike', u'fan', u'credit']],
 [[u'actor',
   u'performance',
   u'mask',
   u'script',
   u'dialogue',
   u'pattern',
   u'behavior',
   u'spiraling',
   u'care'],
  [u'character'],
  [u'character', u'development', u'growth', u'suffering', u'reason']],
 [[u'drama', u'tension', u'glance', u'gesture', u'boundary', u'thing'],
  [u'movie',
   u'work',
   u'leitmotif',
   u'self',
   u'identity',
   u'desire',
   u'limit',
   u'loss'],
  [u'viewer'],
  [u'palate', u'action'],
  [u'story']],
 [[u'movie', u'news', u'level', u'talent', u'piece', u'junk'],
  [u'director', u'appeal', u'matter', u'fodder', u'ticket', u'sale', u'flop'],
  [u'story',
   u'line',
   u'picture',
   u'feeling',
   u'mouse',
   u'maze',
   u'piece',
   u'cheese'],
  [u'revenge', u'kid', u'movie', u'number', u'stereotype'],
  [u'film', u'camerawork'],
  [u'gift', u'psyche', u'transporting', u'vision', u'scene']],
 [[u'title', u'film'],
  [u'summer', u'impression', u'film', u'serial', u'killer'],
  [u'portrait',
   u'street',
   u'life',
   u'summer',
   u'77',
   u'city.<br',
   u'film',
   u'character',
   u'neighborhood',
   u'reaction',
   u'threat'],
  [u'vinny', u'wife', u'characters.<br', u'problem', u'character'],
  [u'time'],
  [u'energy', u'life', u'anger', u'lust', u'turmoil'],
  [u'fight',
   u'scene',
   u'wife',
   u'disco',
   u'dance',
   u'scene',
   u'gabfest',
   u'film',
   u'editor?<br',
   u'film',
   u'chance',
   u'sense',
   u'fear',
   u'dread',
   u'menace',
   u'background'],
  [u'kind', u'menace', u'neighborhood', u'vigilante', u'groups.<br'],
  [u'disco',
   u'music',
   u'attention',
   u'costume',
   u'production',
   u'design',
   u'neighborhood',
   u'film',
   u'authenticity',
   u'rambling',
   u'script',
   u'life',
   u'person']],
 [[u'question', u'lip', u'month', u'terror'],
  [u'word',
   u'question',
   u'summer',
   u'person',
   u'exit',
   u'theater',
   u'summer',
   u'story',
   u'pack',
   u'thug',
   u'psychopath',
   u'year',
   u'depiction',
   u'killing',
   u'demon',
   u'head',
   u'frustration',
   u'manhunt'],
  [u'ensemble', u'loser', u'dog', u'life', u'love', u'honor', u'humanity'],
  [u'critic',
   u'establishment',
   u'stereotype',
   u'scene',
   u'newlywed',
   u'cheating',
   u'husband',
   u'sex',
   u'man'],
  [u'detective', u'center', u'field', u'catch'],
  [u'racist',
   u'musing',
   u'middle',
   u'woman',
   u'man',
   u'person',
   u'man',
   u'person',
   u'race',
   u'riot',
   u'history."<br',
   u'opening',
   u'pan',
   u'shot',
   u'arrival',
   u'disco',
   u'shot',
   u'goodfella',
   u'man',
   u'film',
   u'soul',
   u'purpose',
   u'passion'],
  [u'parade', u'character', u'screen', u'decency'],
  [u'victim', u'spree', u'summer', u'decade', u'havoc', u'city'],
  [u'hatred', u'man?"<br', u'question']],
 [[u'focus', u'goal', u'message'],
  [u'symbolism', u'stereotyping'],
  [u'exchange', u'word', u'dialog', u'class', u'rehearsal'],
  [u'substance', u'exchange', u'actor', u'emotion', u'stake'],
  [u'tear'],
  [u'inaccuracy', u'punk', u'rock', u'piercing', u'outfit'],
  [u'location'],
  [u'cum', u'fever', u'meaning', u'art']],
 [[u'movie', u'time'],
  [u'thought', u'try', u'mistake'],
  [u'movie',
   u'life',
   u'murder',
   u'neighborhood',
   u'summer',
   u'center',
   u'character',
   u'drug',
   u'problem',
   u'marriage',
   u'problem',
   u'scene',
   u'murder',
   u'shooting',
   u'fever'],
  [u'choice', u'reporter', u'movie', u'trust', u'stay', u'movie'],
  [u'scene', u'dog', u'speaking', u'voice', u'scene'],
  [u'case'],
  [u'film', u'dud']],
 [[u'hour',
   u'person',
   u'wife',
   u'schtupping',
   u'dog',
   u'rut',
   u'f-word',
   u'thanks.<br',
   u'movie',
   u'lot'],
  [u'character',
   u'fornicate',
   u'talk',
   u'swear',
   u'time',
   u'sort',
   u'character',
   u'development',
   u'sex',
   u'scene'],
  [u'plot',
   u'development',
   u'hour',
   u'murder',
   u'murder',
   u'scene',
   u'vinnie',
   u'stare',
   u'vinnie',
   u'wife',
   u'character',
   u'parent',
   u'house'],
  [u'photography', u'interplay', u'character'],
  [u'study', u'community', u'relationship']],
 [[u'movie', u'hint', u'perversion', u'cheating'],
  [u'movie', u'point', u'movement', u'dance', u'floor']],
 [[u'film', u'film'],
  [u'story', u'line'],
  [u'acting'],
  [u'track'],
  [u'editing']],
 [[u'sound', u'eyeball', u'version', u'grave'],
  [u'thing', u'opus', u'title'],
  [u'production'],
  [u'producer', u'money', u'obligation', u'sequel', u'director', u'movie'],
  [u'piece',
   u'garbage.<br',
   u'director',
   u'period',
   u'piece',
   u'place',
   u'time'],
  [u'fellow', u'nanny', u'dog', u'adventure', u'lifetime', u'coincidence'],
  [u'date', u'book', u'brother', u'science', u'cave'],
  [u'heroine',
   u'underworld',
   u'service',
   u'nanny',
   u'nanny',
   u'dream',
   u'nanny',
   u'job'],
  [u'supervisor'],
  [u'client', u'rock', u'star', u'doomsday', u'concert', u'career', u'dog'],
  [u'day', u'spa'],
  [u'arrival', u'taxi', u'motel', u'basket', u'jeep'],
  [u'basket', u'motel', u'management', u'pet', u'premise'],
  [u'dog', u'baby'],
  [u'guy', u'city', u'police', u'state', u'dictator', u'center'],
  [u'ruler', u'squad', u'raid', u'surface', u'clone', u'roughness'],
  [u'movie', u'comedy', u'satire', u'dictatorship'],
  [u'budget',
   u'action',
   u'director',
   u'shambles',
   u'science',
   u'fiction',
   u'saga']],
 [[u'story', u'tourist', u'sibling', u'nanny', u'dog'],
  [u'sibling',
   u'jeep',
   u'basket',
   u'dog',
   u'biscuit',
   u'nanny',
   u'way',
   u'cave',
   u'sibling',
   u'guess'],
  [u'reason', u'cave', u'place', u'caving', u'avail', u'sister'],
  [u'cave', u'earth', u'core'],
  [u'alien',
   u'habitant',
   u'rule',
   u'alien',
   u'question',
   u'world',
   u'own.<br',
   u'director',
   u'film',
   u'comment',
   u'film',
   u'half',
   u'film',
   u'sequel',
   u'movie',
   u'film',
   u'budget',
   u'piece',
   u'corner',
   u'humor',
   u'amusement',
   u'minute',
   u'life',
   u'world',
   u'center'],
  [u'star', u'rating', u'time', u'subtlety'],
  [u'example', u'alien', u'girl', u'alien', u'work', u'visa'],
  [u'girl', u'city', u'mistake'],
  [u'thing', u'idiocy', u'hour'],
  [u'film', u'money', u'it.<br', u'end', u'sister']],
 [[u'reviewer', u'reviews', u'taste'],
  [u'movie', u'depth', u'film', u'layer', u'emotion'],
  [u'undercurrent',
   u'love',
   u'submission',
   u'belief',
   u'taboo',
   u'time',
   u'class',
   u'race',
   u'relation',
   u'state',
   u'equality',
   u'guilt',
   u'yearning',
   u'hate',
   u'confusion',
   u'skin',
   u'aire',
   u'movie',
   u'flow',
   u'film',
   u'emotion',
   u'character',
   u'flaw',
   u'inside']],
 [[u'world', u'role', u'him???<br', u'year', u'gun', u'cop'],
  [u'clich',
   u'character',
   u'development',
   u'music',
   u'industry',
   u'cameo',
   u'film']],
 [[u'fetish', u'punk', u'movie']],
 [[u'star', u'movie'],
  [u'day', u'memory.<br', u'buddy', u'cop', u'movie'],
  [u'comedy', u'action', u'movie'],
  [u'overabundance',
   u'subplot',
   u'mask',
   u'storyline.<br',
   u'project',
   u'film',
   u'time'],
  [u'chemistry', u'diversion']],
 [[u'film', u'enjoyment', u'journey'],
  [u'plot',
   u'contrivance',
   u'standard',
   u'buddy',
   u'cop',
   u'film',
   u'character',
   u'end',
   u'film',
   u'sequence',
   u'crutch',
   u'interest.<br',
   u'filmmaker',
   u'job',
   u'character',
   u'thing',
   u'cop'],
  [u'opinion',
   u'force',
   u'view',
   u'bickering.<br',
   u'end',
   u'piece',
   u'escapism'],
  [u'estate', u'deal'],
  [u'affair', u'radio'],
  [u'affair'],
  [u'homicide',
   u'investigation<br',
   u'concern',
   u'actor',
   u'father',
   u'death'],
  [u'thing', u'plot', u'element', u'chase', u'time', u'ennui', u'crap'],
  [u'screenwriting',
   u'acrobatic',
   u'filmmaking.<br',
   u'chase',
   u'sequence',
   u'section',
   u'close',
   u'hour',
   u'field',
   u'estate',
   u'deal',
   u'perpetrator',
   u'gun'],
  [u'plot', u'line', u'joke'],
  [u'care',
   u'murder',
   u'plot',
   u'point',
   u'plot-line',
   u'eye',
   u'candy',
   u'chase',
   u'comprehension.<br',
   u'chase',
   u'story'],
  [u'formula', u'film', u'britches', u'waste', u'time'],
  [u'appearance'],
  [u'actor', u'film', u'like', u'film'],
  [u'film', u'thought', u'money'],
  [u'box', u'office', u'movie', u'actor', u'film', u'lead', u'role']],
 [[u'eye', u'writing', u'comedy'],
  [u'age'],
  [u'mix',
   u'action',
   u'comedy',
   u'polouse',
   u'idea',
   u'result',
   u'spoof',
   u'subgenre',
   u'reason',
   u'mercy',
   u'movie',
   u'kind',
   u'entertaining',
   u'formula'],
  [u'flop'],
  [u'title', u'disaster', u'taxi'],
  [u'<br', u'reason', u'case', u'saturation', u'flick', u'tv', u'decade'],
  [u'dealing', u'humor'],
  [u'matter', u'time'],
  [u'character', u'cop', u'job', u'background', u'city'],
  [u'renewal', u'clich\xe9'],
  [u'role', u'person', u'comedy'],
  [u'directing', u'guy', u'lack'],
  [u'time'],
  [u'place',
   u'face',
   u'charm',
   u'place',
   u'star',
   u'cameo',
   u'moments).<br',
   u'movie',
   u'star',
   u'glamour',
   u'movie',
   u'case',
   u'star',
   u'non-chemistry',
   u'screen',
   u'chemistry',
   u'screen'],
  [u'performance', u'time']],
 [[u'movie'],
  [u'car', u'scene', u'ad', u'nauseum'],
  [u'scene', u'grab', u'family', u'car', u'kid'],
  [u'philosophy', u'right', u'writer', u'thought'],
  [u'subplot', u'filler'],
  [u'body', u'burger', u'crime', u'scene'],
  [u'ground', u'guy'],
  [u'buddy', u'cop', u'phone', u'mystic', u'waltz', u'slap', u'wrist'],
  [u'reason',
   u'cheat',
   u'fraud',
   u'realtor',
   u'price',
   u'producer',
   u'house',
   u'commission'],
  [u'cop', u'movie', u'street', u'care', u'world', u'bystander'],
  [u'person',
   u'round',
   u'<br',
   u'scriptwriting',
   u'action',
   u'sequence',
   u'plot',
   u'sidestory',
   u'attempt',
   u'root'],
  [u'thing'],
  [u'midpoint', u'movie'],
  [u'second', u'tune'],
  [u'waste', u'time', u'movie', u'doubt', u'point', u'career']],
 [[u'film'],
  [u'estate',
   u'client',
   u'yoga',
   u'school',
   u'chick',
   u'time',
   u'investigation',
   u'ex-girlfriend',
   u'investigator',
   u'radio',
   u'man',
   u'killing',
   u'club',
   u'ex-cop',
   u'father',
   u'year',
   u'car',
   u'chase',
   u'attempt',
   u'humor',
   u'gist',
   u'turkey']],
 [[u'character',
   u'actor',
   u'yoga',
   u'instructor',
   u'cop',
   u'way',
   u'mean',
   u'yoga',
   u'girl',
   u'jacuzzi',
   u'work'],
  [u'fact', u'dad', u'cop', u'crime', u'duo'],
  [u'character',
   u'estate',
   u'investigator',
   u'ex-wife',
   u'radio',
   u'character',
   u'time',
   u'time'],
  [u'character', u'dialogue'],
  [u'clich\xe9',
   u'book',
   u'bar',
   u'day',
   u'drink',
   u'bartender',
   u'duo',
   u'affair'],
  [u'hartnett',
   u'dad',
   u'killer',
   u'hell',
   u'mess.<br',
   u'plot',
   u'continuity',
   u'car',
   u'hell',
   u'repo',
   u'guy'],
  [u'morgue', u'clue', u'crime', u'scene', u'earring', u'body'],
  [u'female', u'officer'],
  [u'car', u'car', u'way', u'car'],
  [u'guy', u'building', u'elevator', u'hell', u'floor', u'guy'],
  [u'guy', u'hartnett', u'car', u'estate', u'deal'],
  [u'guy', u'record', u'exec'],
  [u'motivation', u'group', u'rapper', u'label'],
  [u'label', u'warning', u'group'],
  [u'business', u'plan'],
  [u'guy', u'end.<br']],
 [[u'film',
   u'millionaire',
   u'bunch',
   u'person',
   u'game',
   u'winner',
   u'dollar'],
  [u'acting', u'movie', u'sense'],
  [u'bit', u'laugh', u'movie', u'woman', u'breast', u'time', u'character'],
  [u'monster', u'movie', u'screen'],
  [u'case', u'piece', u'junk']],
 [[u'head', u'scratcher', u'film', u'trade', u'eighty'],
  [u'crackpot',
   u'millionaire',
   u'person',
   u'hotel',
   u'person',
   u'contest',
   u'contestant'],
  [u'series', u'prank', u'guest', u'adult', u'circumstance', u'hotel', u'bar'],
  [u'scene',
   u'excuse',
   u'camera',
   u'female',
   u'body',
   u'dance',
   u'number',
   u'crossover',
   u'bandstand',
   u'aerobics',
   u'complete',
   u'hooker'],
  [u'hesitation',
   u'person',
   u'dance',
   u'scene',
   u'hammer',
   u'nail',
   u'coffin'],
  [u'minute', u'darts', u'plot', u'twist', u'inspiration', u'scene', u'mess'],
  [u'coot', u'control'],
  [u'hotel', u'force', u'prop'],
  [u'actor',
   u'day',
   u'job',
   u'point',
   u'scene',
   u'yuppie',
   u'closet',
   u'skeleton',
   u'skull']],
 [[u'film'],
  [u'film',
   u'look',
   u'household',
   u'colonial',
   u'family',
   u'viewer',
   u'perspective',
   u'life',
   u'character',
   u'interaction'],
  [u'development', u'character'],
  [u'example', u'theme', u'story', u'inability', u'relationship'],
  [u'portrayal',
   u'way',
   u'frame',
   u'story',
   u'scene',
   u'return',
   u'childhood',
   u'home',
   u'girl',
   u'lack',
   u'intimacy',
   u'film',
   u'character',
   u'viewer',
   u'development',
   u'lack',
   u'protagonist'],
  [u'stagnation', u'film', u'character', u'development', u'plot'],
  [u'film',
   u'deal',
   u'tension',
   u'character',
   u'man',
   u'life',
   u'friction',
   u'viewer'],
  [u'scene'],
  [u'work', u'standpoint', u'film', u'adventure', u'drama', u'choice']],
 [[u'mess', u'movie', u'man', u'monster', u'a-go'],
  [u'end', u'conclusion', u'film', u'fact', u'shocker'],
  [u'story',
   u'millionaire',
   u'group',
   u'person',
   u'mansion',
   u'series',
   u'game'],
  [u'plot', u'proceedings', u'verge'],
  [u'character'],
  [u'production', u'value', u'question', u'movie', u'standard'],
  [u'truth']],
 [[u'film', u'bond', u'company', u'credit', u'film'],
  [u'acting', u'plot', u'jump', u'sense'],
  [u'bond', u'company', u'footage', u'music', u'library', u'music', u'guess']],
 [[u'film'],
  [u'plot'],
  [u'motivation', u'wealth'],
  [u'character', u'actor', u'film'],
  [u'threat', u'person'],
  [u'mist', u'machine', u'hall'],
  [u'film'],
  [u'person', u'chicken', u'ax'],
  [u'climaxe', u'film']],
 [[u'movie', u'premise', u'person', u'fear', u'dollar'],
  [u'movie'],
  [u'scene', u'way', u'dancing', u'scene'],
  [u'scene', u'excuse', u'camera', u'body'],
  [u'acting', u'line', u'awfulness'],
  [u'end', u'movie', u'end', u'twist', u'sense', u'rest', u'movie'],
  [u'director', u'stuff', u'plot', u'movie', u'point'],
  [u'thing', u'person', u'hall', u'rest', u'mess']],
 [[u'half', u'hour', u'achievement'],
  [u'sequence', u'moment', u'director', u'stinker', u'way'],
  [u'concept', u'millionaire', u'loser', u'mansion', u'elimination', u'game'],
  [u'participant', u'bonehead', u'time', u'folk', u'sadist', u'murderer'],
  [u'film', u'narrator', u'lot', u'stuff', u'plot', u'minute', u'bimbo'],
  [u'hour',
   u'textbook',
   u'rebane-production',
   u'plot',
   u'twist',
   u'dialog',
   u'lack',
   u'excitement'],
  [u'budget', u'murder', u'sequence', u'director'],
  [u'footage', u'disco', u'dancing', u'girl', u'amateur', u'rock', u'band'],
  [u'film', u'climaxe', u'bit', u'satisfying'],
  [u'film']],
 [[u'cheesiest', u'monster', u'film', u'time'],
  [u'joke', u'theater'],
  [u'sort', u'monster'],
  [u'movie', u'toilet'],
  [u'person', u'pile', u'trash', u'need'],
  [u'explain', u'sheer', u'stupidity', u'bucket', u'crap']],
 [[u'story', u'monster', u'plant', u'water'],
  [u'monster', u'film', u'lot', u'person', u'monster', u'way'],
  [u'point', u'monster', u'scale', u'scene', u'puppy'],
  [u'exploitation', u'film', u'frame', u'mind'],
  [u'complaint', u'print', u'release', u'video', u'tape', u'copy', u'year']],
 [[u'work', u'fx', u'statement', u'damage', u'monster', u'movie'],
  [u'lot',
   u'merit',
   u'scene',
   u'monster',
   u'river',
   u'water',
   u'luck',
   u'woman',
   u'disappearance'],
  [u'<br',
   u'stuff',
   u'semi-interesting',
   u'peek',
   u'culture',
   u'father',
   u'walking',
   u'town',
   u'flock',
   u'piece',
   u'semblance'],
  [u'director', u'carradine', u'dialog'],
  [u'look', u'monster', u'action', u'appeal'],
  [u'filmmaker',
   u'lot',
   u'problem',
   u'picture',
   u'case',
   u'monster',
   u'double-feature',
   u'print',
   u'transfer',
   u'quality'],
  [u'course', u'commentary', u'robot', u'mystery', u'roast', u'turkey']],
 [[u'guy', u'woman', u'lot', u'swearing', u'monster', u'depth', u'lake'],
  [u'interview',
   u'fangorium',
   u'bulk',
   u'film',
   u'footage',
   u'child',
   u'character',
   u'turn',
   u'credit'],
  [u'end', u'result'],
  [u'monster', u'look', u'feel', u'tv', u'movie', u'background'],
  [u'entertainment', u'face', u'reminder', u'age', u'type']],
 [[u'monster', u'mind', u'movie', u'factory'],
  [u'water',
   u'town',
   u'catfish-like',
   u'beast',
   u'predilection',
   u'lamb',
   u'woman'],
  [u'man', u'boss', u'hand', u'secretary', u'rear', u'pun', u'story'],
  [u'reporter', u'story'],
  [u'seventy', u'market', u'news', u'town'],
  [u'factory',
   u'water',
   u'way',
   u'town',
   u'job',
   u'local',
   u'economic',
   u'way',
   u'enviro-marxism'],
  [u'action', u'evidence'],
  [u'currency', u'exchange', u'check', u'story', u'credit', u'film'],
  [u'filming',
   u'year',
   u'foot',
   u'throat',
   u'monster',
   u'child',
   u'character',
   u'daughter',
   u'billing'],
  [u'quality', u'scene', u'tar', u'camera'],
  [u'scene', u'night'],
  [u'monster', u'head'],
  [u'brother', u'proof', u'nepotism', u'industry'],
  [u'dreck']],
 [[u'movie',
   u'life',
   u'perspective',
   u'girl',
   u'father',
   u'official',
   u'colonial',
   u'government',
   u'family',
   u'family'],
  [u'sense', u'movie', u'time', u'period', u'way']],
 [[u'night', u'horror', u'site', u'movie', u'fun', u'movie', u'movie'],
  [u'movie', u'value', u'horror', u'flick', u'movie'],
  [u'check',
   u'movie',
   u'right',
   u'episode',
   u'movie',
   u'plot',
   u'production',
   u'lot',
   u'speed',
   u'connection']],
 [[u'example',
   u'self',
   u'vanity',
   u'project',
   u'crew',
   u'member',
   u'burning',
   u'stake',
   u'sequence',
   u'piece',
   u'sh*t',
   u'lot',
   u'piece',
   u'sh*t'],
  [u'moment',
   u'trouble',
   u'line',
   u'courtyard',
   u'location',
   u'shrine',
   u'onlooker',
   u'respect',
   u'man',
   u'apology',
   u'behavior'],
  [u'case',
   u'crew',
   u'job',
   u'deferment',
   u'plenty',
   u'story',
   u'night',
   u'producer',
   u'year',
   u'son',
   u'tiger',
   u'trap',
   u'leg']],
 [[u'summer', u'stinker', u'snake', u'statement'],
  [u'return', u'month', u'hyper-indulgent', u'eyeball'],
  [u'stuff', u'head', u'in.<br', u'idea', u'outing'],
  [u'approach', u'effect'],
  [u'story',
   u'blockbuster',
   u'way',
   u'audience',
   u'money',
   u'effect',
   u'hype'],
  [u'atmosphere', u'involvement'],
  [u'film',
   u'crap',
   u'reviews',
   u'critic',
   u'movie',
   u'soul',
   u'heart',
   u'tender',
   u'character',
   u'moment'],
  [u'superhero', u'dozen', u'time', u'year', u'regard'],
  [u'plot', u'garbage'],
  [u'landmass', u'film'],
  [u'junk', u'hour'],
  [u'cast'],
  [u'screen',
   u'personality',
   u'mahogany',
   u'hat-stand',
   u'journalist',
   u'agent',
   u'judgement'],
  [u'cast', u'member'],
  [u'weird-looking', u'girls.<br', u'year', u'film']],
 [[u'eye', u'example', u'ego', u'king', u'movie'],
  [u'hero', u'respect', u'tight'],
  [u'start', u'movie', u'chunk', u'kryptonite', u'throat'],
  [u'choise', u'lois', u'lane', u'ass', u'reporter', u'movie', u'schoolgirl'],
  [u'plot', u'son', u'acting'],
  [u'movie', u'thing'],
  [u'portrayal', u'movie'],
  [u'movie', u'cast', u'lois', u'course', u'story'],
  [u'movie', u'hill', u'eye', u'movie']],
 [[u'period', u'space', u'planet', u'return'],
  [u'son'],
  [u'plot',
   u'evil',
   u'plan',
   u'crystal',
   u'land',
   u'movie',
   u'tv',
   u'smallville',
   u'expectation',
   u'return',
   u'version'],
  [u'story', u'boring', u'lack', u'emotion'],
  [u'addition', u'romance'],
  [u'year', u'actress', u'role', u'reporter', u'mother', u'year', u'boy'],
  [u'year', u'teenager', u'smallville'],
  [u'character', u'caricature'],
  [u'spite', u'year', u'rest', u'lead', u'cast'],
  [u'conclusion', u'soap', u'opera'],
  [u'vote', u'return']],
 [[u'fan',
   u'comic',
   u'series',
   u'film',
   u'attempt',
   u'real-estate',
   u'conversion',
   u'superman-beaten-up-while-wearing-kryptonite',
   u'sequence',
   u'inconsistency',
   u'ocean',
   u'kryptonite',
   u'rest',
   u'continent',
   u'space'],
  [u'kind',
   u'thing',
   u'gut',
   u'skill',
   u'superpower',
   u'invulnerability',
   u'human.<br'],
  [u'universe', u'scheme']],
 [[u'book', u'target', u'year'],
  [u'return', u'movie'],
  [u'<br', u'question', u'reader'],
  [u'issue', u'movie', u'scene', u'bar', u'scene'],
  [u'hour'],
  [u'let', u'amadeus'],
  [u'effect', u'way.<br', u'scenario'],
  [u'cinema'],
  [u'time', u'producer', u'story', u'book'],
  [u'story', u'story', u'starter'],
  [u'money', u'person', u'quality', u'product'],
  [u'point'],
  [u'surprise'],
  [u'thing',
   u'book',
   u'hero',
   u'personality',
   u'motivation',
   u'doubt',
   u'fear',
   u'depth'],
  [u'unit', u'attention', u'screen'],
  [u'harder', u'laugh', u'conclusion'],
  [u'<br', u'movie', u'lady', u'gent', u'camp']],
 [[u'movie',
   u'copy',
   u'villain',
   u'spice.<br',
   u'plan',
   u'movie',
   u'lot',
   u'forced.<br',
   u'script',
   u'stuff',
   u'luthor',
   u'museum',
   u'lady).<br',
   u'story',
   u'thing',
   u'sequel',
   u'talent',
   u'director',
   u'copy.<br']],
 [[u'movie', u'thinking'],
  [u'spaceship',
   u'crash',
   u'land',
   u'year',
   u'adult',
   u'board',
   u'thing',
   u'crash'],
  [u'civilization', u'landing', u'gear'],
  [u'industry', u'movie', u'black'],
  [u'person', u'darkie', u'area']],
 [[u'film'],
  [u'expectation'],
  [u'think', u'thing'],
  [u'point'],
  [u'graphic'],
  [u'plot',
   u'<br',
   u'question',
   u'hour',
   u'movie',
   u'scene',
   u'bit',
   u'hero',
   u'villain',
   u'screen',
   u'time',
   u'son',
   u'henchman',
   u'half',
   u'budget',
   u'hospital',
   u'doctor'],
  [u'<br', u'person', u'reviews', u'movie?<br'],
  [u'<br', u'continent', u'krypyonite', u'kryptonite', u'rock', u'head'],
  [u'continent',
   u'thing',
   u'fear',
   u'rock',
   u'<br',
   u'writer',
   u'half-wit',
   u'mistake']],
 [[u'film'],
  [u'picture', u'mind'],
  [u'paper', u'premise'],
  [u'film'],
  [u'story', u'flashback', u'filmmaker'],
  [u'character', u'day', u'audience'],
  [u'flashback',
   u'technique',
   u'director',
   u'audience',
   u'girl',
   u'adulthood',
   u'damage',
   u'viewer',
   u'sense',
   u'story',
   u'emotion'],
  [u'filmmaker', u'face', u'scream', u'childhood'],
  [u'girl', u'fine'],
  [u'mother', u'action', u'flashback', u'aspect'],
  [u'<br',
   u'movie',
   u'deal',
   u'time',
   u'period',
   u'present',
   u'scene',
   u'fat'],
  [u'scene', u'place'],
  [u'film', u'rhythm', u'editing', u'story'],
  [u'story', u'editing', u'film'],
  [u'career', u'reason', u'debut']],
 [[u'singer', u'movie', u'crash', u'box', u'office', u'record'],
  [u'structure',
   u'color',
   u'scheme',
   u'dialog',
   u'clown',
   u'alien',
   u'technology',
   u'fun',
   u'magic',
   u'movie',
   u'thing',
   u'character',
   u'superhero'],
  [u'core',
   u'thing.<br',
   u'trouble',
   u'supersoftie',
   u'facet',
   u'movie',
   u'time.<br',
   u'movie'],
  [u'case',
   u'boring',
   u'study',
   u'minute',
   u'person',
   u'difference.<br',
   u'movie',
   u'joke'],
  [u'skywalker', u'thing'],
  [u'soul', u'love', u'trouble', u'drama', u'person'],
  [u'character', u'yentl', u'remake.<br', u'return'],
  [u'supersadlysoftie',
   u'stand',
   u'door.<br',
   u'singer',
   u'legend',
   u'kryptonite',
   u'movie'],
  [u'sequel',
   u'<br',
   u'time',
   u'singer',
   u'superhero',
   u'movie',
   u'superlame',
   u'soap'],
  [u'superhero',
   u'movie',
   u'fantasy',
   u'lot',
   u'fun',
   u'magic.<br',
   u'movie',
   u'chocolate',
   u'box',
   u'cover'],
  [u'sort',
   u'lot',
   u'talk',
   u'joke',
   u'view',
   u'action',
   u'scene',
   u'piece',
   u'quality.<br',
   u'boring',
   u'patchwork',
   u'movie',
   u'live.<br',
   u'cast',
   u'strategy',
   u'sequel',
   u'year',
   u'rest'],
  [u'year', u'star', u'reporter'],
  [u'year', u'year', u'planet', u'reporter', u'wroting', u'night'],
  [u'bit', u'movie'],
  [u'posey'],
  [u'spacey', u'terrain.<br', u'fun'],
  [u'difference.<br', u'end'],
  [u'superhero', u'day'],
  [u'talk',
   u'god',
   u'week',
   u'god.<br',
   u'movie',
   u'parallel',
   u'universe.<br',
   u'warner',
   u'brother',
   u'flick',
   u'disaster',
   u'history'],
  [u'money.<br',
   u'message',
   u'feeling',
   u'person',
   u'thousand',
   u'movie',
   u'tv-show',
   u'magnolia'],
  [u'frog', u'superwoman', u'course.<br'],
  [u'fact', u'hole', u'passion', u'comic', u'movie', u'hour', u'life.<br'],
  [u'smilla', u'brother'],
  [u'hulk']],
 [[u'need'],
  [u'potential', u'home-wrecker', u'stalker'],
  [u'type', u'character', u'hero'],
  [u'skit', u'result', u'case', u'child', u'father'],
  [u'movie']],
 [[u'movie', u'attempt', u'money', u'theme'],
  [u'acting', u'effect', u'plot'],
  [u'year', u'girlfriend', u'son', u'son', u'opinion', u'year'],
  [u'continent', u'order', u'land']],
 [[u'movie', u'angle'],
  [u'movie'],
  [u'case', u'clothe'],
  [u'fact', u'member', u'audience', u'right'],
  [u'superman',
   u'level',
   u'connection',
   u'priority',
   u'number',
   u'character',
   u'torn'],
  [u'eating', u'avg'],
  [u'person.<br', u'dad', u'dad', u'story', u'step', u'way'],
  [u'person', u'love', u'person', u'highschool', u'student', u'person'],
  [u'kid', u'thought', u'action'],
  [u'return', u'child', u'heart', u'soul', u'superpower', u'movie'],
  [u'power',
   u'love',
   u'world',
   u'plot',
   u'sleeve.<br',
   u'love',
   u'story',
   u'humanity',
   u'win',
   u'nature',
   u'power',
   u'nature',
   u'thing',
   u'superpower',
   u'power',
   u'love'],
  [u'connection'],
  [u'ineresting', u'use', u'superpower'],
  [u'brute',
   u'strength.<br',
   u'coal',
   u'diamond',
   u'woman',
   u'thing',
   u'power',
   u'saving.<br',
   u'stake',
   u'return'],
  [u'damage',
   u'nemesis',
   u'world',
   u'domination',
   u'plot',
   u'suffering',
   u'effect',
   u'person',
   u'middle',
   u'damage',
   u'plot'],
  [u'glob',
   u'crystal',
   u'space',
   u'superman',
   u'order',
   u'plot',
   u'access',
   u'superpower'],
  [u'missile', u'direction', u'mandate', u'history', u'life', u'year'],
  [u'guy', u'genius', u'villain', u'tactic', u'superpower', u'computer'],
  [u'aggression',
   u'computer',
   u'advance',
   u'acid',
   u'computer',
   u'computer',
   u'aggression'],
  [u'figure', u'strength']],
 [[u'day',
   u'day',
   u'kind',
   u'fan',
   u'hope',
   u'movie',
   u'end',
   u'movie',
   u'nature',
   u'change',
   u'character',
   u'powers.<br',
   u'element',
   u'movie',
   u'version.<br',
   u'shyster',
   u'conman'],
  [u'luthor',
   u'victim',
   u'writing',
   u'dialog.<br',
   u'henchman',
   u'book',
   u'henchman'],
  [u'evil', u'underling', u'trouble', u'disappointment', u'movie'],
  [u'fan', u'movie', u'soul'],
  [u'reporter', u'truth', u'story'],
  [u'langella', u'stooge'],
  [u'story', u'paper', u'paper', u'thing'],
  [u'story', u'mystery', u'prison.<br', u'thing', u'langella'],
  [u'actor', u'undercurrent', u'water'],
  [u'routh', u'actor'],
  [u'line', u'movie'],
  [u'movement', u'movement', u'finger', u'effect', u'way'],
  [u'journalist', u'writer', u'actor', u'movie'],
  [u'moment', u'them.<br', u'plot'],
  [u'return', u'world', u'arm'],
  [u'luthor', u'chance', u'score', u'man', u'steel.<br', u'hero', u'universe'],
  [u'piece',
   u'meteorite',
   u'museum',
   u'prison',
   u'knowledge',
   u'power',
   u'weakness',
   u'dot',
   u'kryptonite',
   u'him.<br',
   u'movie',
   u'thing',
   u'thing'],
  [u'action', u'sequence']],
 [[u'movie',
   u'tribute',
   u'scene',
   u'visual',
   u'credit',
   u'pay',
   u'homage',
   u'sweeping',
   u'credit',
   u'film.<br',
   u'stuff'],
  [u'kind', u'ruckus', u'farm', u'portion', u'life', u'debris', u'cornfield'],
  [u'faints.<br', u'scene', u'close-up', u'lady'],
  [u'face', u'end', u'scene', u'instance', u'film', u'drive', u'stone'],
  [u'guy'],
  [u'human',
   u'movie',
   u'kind',
   u'plot',
   u'population.<br',
   u'job',
   u'year',
   u'trip'],
  [u'kid'],
  [u'upset',
   u'control',
   u'strength',
   u'extent',
   u'picture',
   u'frame.<br',
   u'point',
   u'kind',
   u'jet',
   u'kind',
   u'space',
   u'shuttle'],
  [u'kind', u'event', u'account', u'television'],
  [u'film', u'person', u'summer.<br', u'event', u'disaster', u'soda'],
  [u'theater', u'movie', u'slide', u'entirety'],
  [u'son', u'school', u'graduation', u'return', u'theater', u'need'],
  [u'half', u'hour', u'thing'],
  [u'everybody'],
  [u'subplot', u'family', u'x-ray', u'vision', u'super-hearing'],
  [u'guy.<br', u'kind', u'contest', u'villain', u'behavior', u'end', u'movie'],
  [u'dollars.<br', u'point', u'thing', u'start', u'finale'],
  [u'thing',
   u'water',
   u'thing',
   u'wait',
   u'again.<br',
   u'guy',
   u'girlfriend',
   u'bit.<br',
   u'life'],
  [u'movie', u'year', u'nursing', u'home'],
  [u'return'],
  [u'viewer', u'skeleton', u'beard', u'now.<br', u'seat', u'house'],
  [u'movie', u'review', u'joke', u'person', u'dog', u'dog', u'dog', u'movie']],
 [[u'effect'],
  [u'film', u'hero', u'hero', u'archetype'],
  [u'film'],
  [u'choice', u'problem', u'film', u'depth'],
  [u'film', u'hero', u'comic', u'person', u'mind'],
  [u'waste',
   u'money',
   u'direction',
   u'film',
   u'taken.<br',
   u'instance',
   u'villain',
   u'corporatism',
   u'domination',
   u'totalitarianism'],
  [u'incarnation.<br']],
 [[u'effect', u'game'],
  [u'thing', u'film'],
  [u'fact', u'note', u'word', u'review', u'swearing'],
  [u'<br', u'complaint', u'film', u'complaint'],
  [u'complaint',
   u'cheesiness',
   u'plot',
   u'twist',
   u'person',
   u'mile',
   u'son',
   u'child'],
  [u'movie', u'gimmick', u'child'],
  [u'<br', u'complaint', u'fact', u'continent', u'kryptonite', u'space'],
  [u'book', u'guy'],
  [u'book', u'kryptonite', u'strength', u'foot'],
  [u'idea', u'island', u'weakness', u'space', u'business', u'project'],
  [u'concept',
   u'movie',
   u'title',
   u'character',
   u'stake',
   u'heart',
   u'spaceship',
   u'garlic',
   u'sun'],
  [u'continent',
   u'kryptonite',
   u'space',
   u'fall',
   u'atmosphere',
   u're-entry',
   u'splattering',
   u'park',
   u'ground'],
  [u'<br',
   u'complaint',
   u'fact',
   u'movie-goer',
   u'face',
   u'symbolism',
   u'movie'],
  [u'allegory', u'piece', u'primary', u'weakness'],
  [u'crucifixion',
   u'scene',
   u'stab',
   u'kryptonite',
   u'spear',
   u'slam',
   u'face',
   u'brick',
   u'symbolism',
   u'man',
   u'steel',
   u'future'],
  [u'movie', u'return', u'speaking', u'luthor', u'complaint', u'depiction'],
  [u'business', u'tycoon', u'comic', u'try', u'world'],
  [u'luthor',
   u'return',
   u'movie',
   u'theatrical',
   u'dunce',
   u'scheme',
   u'world'],
  [u'loyalty', u'character', u'movie', u'film', u'travesty'],
  [u'movie', u'fact', u'person', u'reviews'],
  [u'opinion', u'movie', u'opinion']],
 [[u'story', u'half', u'execution'],
  [u'dialog', u'un-sparkling', u'boring.<br', u'character'],
  [u'guy', u'couple', u'sword', u'properly.<br'],
  [u'telekenisis', u'card', u'float', u'strength', u'foot', u'air'],
  [u'heck', u'helicopter'],
  [u'replacement',
   u'fight',
   u'film',
   u'proof',
   u'wire',
   u'work',
   u'fight',
   u'coordinator'],
  [u'replacement',
   u'fight',
   u'fighter',
   u'comic',
   u'choreography',
   u'film',
   u'memory'],
  [u'stunt', u'coordinator', u'shoulder', u'effect', u'break', u'mutant'],
  [u'mutant', u'cell', u'power', u'quicksilver', u'nod'],
  [u'bullet', u'memory'],
  [u'freaking', u'bullet', u'hole', u'adamantium', u'skull'],
  [u'sorry', u'liev', u'man', u'sabretooth', u'script'],
  [u'villain'],
  [u'film', u'epic', u'lameness.<br', u'level'],
  [u'story', u'actor', u'execution']],
 [[u'character', u'character', u'book', u'history'],
  [u'sequel', u'book', u'entertainment'],
  [u'movie'],
  [u'idea', u'movie', u'movie'],
  [u'character',
   u'movie',
   u'movie',
   u'character',
   u'book',
   u'adventure.<br',
   u'reason',
   u'competition'],
  [u'plot', u'development', u'movie'],
  [u'entertainment'],
  [u'action', u'movie'],
  [u'effect',
   u'element',
   u'suspense',
   u'event',
   u'movie',
   u'movie',
   u'concept',
   u'dozen',
   u'time'],
  [u'course',
   u'movie',
   u'piece',
   u'everybody',
   u'clich\xe9s',
   u'chain',
   u'event',
   u'connection',
   u'enough.<br',
   u'problem'],
  [u'action',
   u'movie',
   u'action',
   u'movie',
   u'way',
   u'lot',
   u'plot',
   u'hole',
   u'character',
   u'stupidity'],
  [u'flaw', u'title'],
  [u'home', u'circumstance'],
  [u'brother', u'liev'],
  [u'secret', u'team', u'soldier'],
  [u'government'],
  [u'year', u'lumberjack', u'time'],
  [u'guinneapig', u'bunch', u'scientist', u'metal', u'war', u'animal'],
  [u'guy', u'fighting', u'memory', u'cue', u'movie.<br'],
  [u'movie'],
  [u'scene',
   u'action',
   u'hero',
   u'villain',
   u'character',
   u'line',
   u'couch',
   u'audience',
   u'suit'],
  [u'guy'],
  [u'mmhm',
   u'right',
   u'line',
   u'dialog',
   u'line',
   u'thing',
   u'plausibility',
   u'waste',
   u'time'],
  [u'movie', u'reason', u'entertaining', u'favor', u'origin']],
 [[u'story', u'girl', u'colonial', u'that.<br', u'thing'],
  [u'longing', u'race'],
  [u'expression', u'story', u'servant', u'woman'],
  [u'desire', u'girl', u'time'],
  [u'dance.<br', u'aspect', u'film', u'laziness', u'colonial'],
  [u'night', u'animal']],
 [[u'cash', u'cow', u'franchise'],
  [u'showcase'],
  [u'series', u'event'],
  [u'iteration', u'fight', u'scene', u'exposition', u'alliance'],
  [u'clich\xe9', u'meter', u'chart', u'primal', u'scream', u'girlfriend'],
  [u'renegade', u'commander'],
  [u'double'],
  [u'failure', u'nemese', u'melee'],
  [u'spy', u'hero', u'arch-nemesis'],
  [u'mastermind', u'honor', u'employee'],
  [u'couple', u'care', u'hero', u'trouble'],
  [u'death', u'party', u'scene', u'coup', u'grace'],
  [u'government', u'agency'],
  [u'abandonment', u'squad', u'protest', u'slaughter', u'innocent'],
  [u'scientist', u'killing', u'machine', u'creation'],
  [u'government', u'weapon', u'successor'],
  [u'heart', u'monitor', u'pulse'],
  [u'foe'],
  [u'relief', u'character', u'understatement', u'comment'],
  [u'psychopath', u'revel', u'rampage'],
  [u'goliath', u'series', u'wall', u'trauma'],
  [u'man', u'dispatch', u'dozen', u'gun', u'enemy', u'swordplay'],
  [u'sense', u'law', u'physics', u'biology', u'chemistry'],
  [u'antagonist', u'murder', u'justification', u'crusade.<br', u'exhausting']],
 [[u'film', u'film'],
  [u'type', u'movie', u'popcorn', u'graphic'],
  [u'mind', u'movie'],
  [u'popcorn',
   u'action',
   u'effect',
   u'film',
   u'cliff',
   u'viewer',
   u'character',
   u'film',
   u'adaptation',
   u'film'],
  [u'film', u'reason'],
  [u'character', u'film'],
  [u'rest', u'character', u'wayside', u'way', u'eye-candy'],
  [u'character',
   u'30-minute',
   u'surprise',
   u'film.<br',
   u'boss',
   u'film',
   u'adaptation',
   u'character',
   u'development',
   u'way'],
  [u'filmmaker', u'ass', u'character', u'character.<br']],
 [[u'movie'],
  [u'character',
   u'opinion',
   u'story',
   u'arch.<br',
   u'movie',
   u'production',
   u'expectation',
   u'movie'],
  [u'actor',
   u'movie',
   u'movie',
   u'actor',
   u'acting',
   u'screw',
   u'movie',
   u'up.<br',
   u'film',
   u'lot',
   u'character',
   u'plot',
   u'fan',
   u'film',
   u'maker',
   u'comics.<br',
   u'fan',
   u'xmen',
   u'story',
   u'movie'],
  [u'project',
   u'relationship',
   u'motivation',
   u'wolverine',
   u'million',
   u'movie',
   u'revenge',
   u'death',
   u'one.<br'],
  [u'movie',
   u'moment',
   u'school',
   u'man',
   u'enemy',
   u'force',
   u'family',
   u'flick',
   u'violence',
   u'marvel',
   u'hero.<br',
   u'feeling',
   u'dej\xe1',
   u'v\xf9',
   u'movie',
   u'adamantium',
   u'skeleton',
   u'kind',
   u'sense',
   u'movie',
   u'wolverine',
   u'character',
   u'back-story',
   u'mystery',
   u'nature',
   u'character']],
 [[u'synopsis',
   u'<br',
   u'story',
   u'past',
   u'relationship',
   u'program."<br',
   u'past',
   u'relationship',
   u'connection'],
  [u'point',
   u'scene',
   u'child',
   u'run',
   u'montage',
   u'war',
   u'scene',
   u'lifespan',
   u'government',
   u'team',
   u'assassins.<br',
   u'way',
   u'relationship',
   u'brother'],
  [u'complex'],
  [u'<br', u'element', u'movie'],
  [u'element', u'revenge', u'story', u'romance'],
  [u'love', u'wood', u'rot'],
  [u'character',
   u'plot',
   u'surprise.<br',
   u'weapon',
   u'program',
   u'procedure'],
  [u'home', u'couple'],
  [u'man', u'barn'],
  [u'wonder',
   u'fate',
   u'them?<br',
   u'film',
   u'book',
   u'reason',
   u'amnesia',
   u'fact',
   u'evil',
   u'coldblooded.<br',
   u'case',
   u'horror',
   u'lifestyle',
   u'villain',
   u'world',
   u'team',
   u'mates?<br',
   u'x2',
   u'secret',
   u'work'],
  [u'violence', u'action', u'native', u'land', u'minute', u'screen'],
  [u'<br', u'man'],
  [u'leash', u'brother', u'agent', u'thought'],
  [u'together.<br',
   u'conflict',
   u'duality',
   u'all.<br',
   u'character',
   u'conflict',
   u'story'],
  [u'rubber',
   u'claws.<br',
   u'ton',
   u'error',
   u'film',
   u'trilogy',
   u'introduction',
   u'script.<br',
   u'memory-erasing',
   u'bullet'],
  [u'agent',
   u'agent',
   u'bullet',
   u'bomb',
   u'all.<br',
   u'problem',
   u'film',
   u'ton',
   u'mutant'],
  [u'character', u'window', u'dressing', u'story'],
  [u'film',
   u'minute',
   u'max',
   u'version',
   u'tank',
   u'missile',
   u'damage',
   u'headbutt',
   u'metal',
   u'noggin',
   u'daze',
   u'him?<br',
   u'beam',
   u'force',
   u'laser',
   u'building',
   u'ground',
   u'clothe'],
  [u'trench', u'coat', u'gravity', u'signature', u'card', u'sort', u'acrobat'],
  [u'scene', u'minute', u'rooftop'],
  [u'consciousness',
   u'block',
   u'building',
   u'middle',
   u'match',
   u'mystery',
   u'film',
   u'weakness',
   u'character',
   u'flash'],
  [u'idea',
   u'movie',
   u'film',
   u'fact',
   u'book',
   u'source',
   u'material',
   u'origin',
   u'story',
   u'screen'],
  [u'sugar', u'coat', u'past', u'reader', u'junkies'],
  [u'story', u'time', u'weapon'],
  [u'story.<br', u'fox', u'film']],
 [[u'service',
   u'comedy',
   u'brother',
   u'host',
   u'sight',
   u'gag',
   u'talk',
   u'scene',
   u'grenade',
   u'officer',
   u'politician',
   u'anger',
   u'foot',
   u'reaction',
   u'flinches.<br',
   u'midst',
   u'awfulness',
   u'moment',
   u'brightness',
   u'engage',
   u'bout',
   u'talk',
   u'argufying',
   u'timing',
   u'comedy',
   u'pair.<br',
   u'turkey']],
 [[u'song', u'movie', u'script', u'grating', u'slapstick', u'blush'],
  [u'hour', u'story', u'plot', u'character'],
  [u'guy', u'sailor', u'racist', u'caricature', u'day'],
  [u'shame', u'movie', u'guy'],
  [u'towel', u'one.<br', u'charm', u'movie', u'half', u'hour'],
  [u'story', u'situation']],
 [[u'ape', u'comedy', u'team'],
  [u'laugh', u'picture'],
  [u'script', u'chemistry', u'type', u'coolness'],
  [u'sure'],
  [u'pillar',
   u'sky',
   u'bullfighter',
   u'minute',
   u'thing',
   u'kid',
   u'audience',
   u'stuff',
   u'screen',
   u'short'],
  [u'year', u'cable', u'night'],
  [u'thing', u'thing'],
  [u'soldier', u'way', u'character', u'defective', u'comparison'],
  [u'host', u'hand', u'movie'],
  [u'waste', u'film']],
 [[u'sprawling', u'novel', u'life', u'snobbery', u'look'],
  [u'film', u'miscasting', u'everyman'],
  [u'life', u'character', u'sophistication', u'eye', u'nuance', u'experience'],
  [u'film', u'blah', u'subject', u'dehumanization', u'favor', u'status'],
  [u'satire', u'viewer', u'point']],
 [[u'novel',
   u'wall',
   u'streeter',
   u'boy',
   u'reporter',
   u'spiral',
   u'character',
   u'empathy',
   u'movie',
   u'comedy',
   u'satire',
   u'lot',
   u'laugh',
   u'breast',
   u'fun',
   u'thing',
   u'change',
   u'size',
   u'film',
   u'mind',
   u'thing',
   u'lack',
   u'script',
   u'humor',
   u'scale']],
 [[u'novel', u'film', u'film', u'flop'],
  [u'comparison', u'film'],
  [u'animals.<br', u'novel', u'satire', u'cross', u'tragedy'],
  [u'element', u'basis', u'film', u'version', u'author', u'thrust'],
  [u'suit', u'author', u'fool'],
  [u'precedent', u'spectre', u'hat', u'tail'],
  [u'clown', u'hack', u'celebrity', u'author', u'grist'],
  [u'<br',
   u'wonder',
   u'production',
   u'skill',
   u'direction',
   u'film',
   u'start'],
  [u'satire',
   u'film',
   u'polemic',
   u'observation',
   u'form',
   u'behavior',
   u'attack',
   u'person',
   u'straw',
   u'man',
   u'wrath',
   u'writer'],
  [u'effort',
   u'story',
   u'beginning',
   u'writer',
   u'influence',
   u'interference.<br',
   u'fault',
   u'casting'],
  [u'incompetent',
   u'fail',
   u'talent',
   u'role',
   u'caricatures.<br',
   u'material',
   u'film',
   u'satire']],
 [[u'movie', u'thought', u'picture', u'colonial', u'story'],
  [u'story'],
  [u'vignette', u'point', u'light', u'picture'],
  [u'movie'],
  [u'scene', u'airport', u'shower', u'music', u'sheer', u'poetry'],
  [u'movie', u'tear']],
 [[u'point',
   u'novel',
   u'point',
   u'story',
   u'thing',
   u'place',
   u'sense',
   u'expediency'],
  [u'goal', u'survival', u'kind', u'life', u'style'],
  [u'relationship', u'ring', u'daughter'],
  [u'way',
   u'publicity',
   u'power',
   u'money',
   u'self',
   u'aggrandizement.<br',
   u'character',
   u'segment',
   u'head'],
  [u'neighborhood',
   u'improvement',
   u'committee',
   u'organization',
   u'qualification',
   u'order'],
  [u'studies'],
  [u'weakness'],
  [u'protester', u'justice'],
  [u'movie', u'frame', u'story'],
  [u'event'],
  [u'anthropologist',
   u'details.<br',
   u'mistress',
   u'couple',
   u'kid',
   u'getaway'],
  [u'<br',
   u'scene',
   u'movie',
   u'audience',
   u'time',
   u'attempt',
   u'message',
   u'message'],
  [u'<br',
   u'kid',
   u'novel',
   u'release',
   u'jail',
   u'condo',
   u'shotgun',
   u'start',
   u'shooting',
   u'ceiling',
   u'movee'],
  [u'scene',
   u'ceiling',
   u'plaster',
   u'party',
   u'guest',
   u'scurry',
   u'shrieking'],
  [u'sensibility', u'work'],
  [u'scene', u'wake', u'audience'],
  [u'scene',
   u'verisimilitude.<br',
   u'movie',
   u'thrust',
   u'lot',
   u'sin',
   u'redemption',
   u'entertaining',
   u'story',
   u'nihilism'],
  [u'judge', u'bench', u'speech'],
  [u'reporter', u'lamb'],
  [u'law', u'grin'],
  [u'<br', u'movie', u'point', u'audience', u'subtleties.<br', u'direction'],
  [u'film', u'respect'],
  [u'photography', u'shot', u'gargoyle', u'landing'],
  [u'script', u'botched.<br', u'half', u'movie', u'conception', u'execution'],
  [u'novel'],
  [u'focus',
   u'half',
   u'watching.<br',
   u'redneck',
   u'right-wingism',
   u'lot',
   u'person',
   u'cojone',
   u'percept'],
  [u'writer', u'producer', u'courage', u'chance', u'study']],
 [[u'book',
   u'adaptation',
   u'film',
   u'storyline',
   u'description',
   u'character'],
  [u'storyline', u'scene', u'order'],
  [u'thing', u'book', u'book', u'film', u'character']],
 [[u'critic',
   u'stinker',
   u'time',
   u'stinker',
   u'director',
   u'career).<br',
   u'boy',
   u'life',
   u'piece',
   u'lover'],
  [u'story', u'guy', u'reporter', u'summary', u'<br', u'movie'],
  [u'character',
   u'displeasure',
   u'meeting',
   u'life.<br',
   u'fan',
   u'novel',
   u'liking',
   u'novel',
   u'film',
   u'travesty.<br',
   u'actor',
   u'movie',
   u'semblance',
   u'quality'],
  [u'waste.<br', u'problem', u'guy', u'role'],
  [u'there.<br',
   u'film',
   u'dignity',
   u'lecture',
   u'decency',
   u'climax.<br',
   u'movie',
   u'farce.<br',
   u'assemblage',
   u'talent',
   u'person',
   u'movie',
   u'source',
   u'material']],
 [[u'movie', u'story', u'title', u'book'],
  [u'change', u'story', u'flow', u'screen'],
  [u'change', u'product'],
  [u'scene', u'movie'],
  [u'actor'],
  [u'director',
   u'screen',
   u'writer',
   u'comedy',
   u'sermon.<br',
   u'movie',
   u'book']],
 [[u'book', u'possibility', u'film'],
  [u'decision', u'movie'],
  [u'actor', u'characteristic', u'role'],
  [u'choice.<br',
   u'eye',
   u'candy',
   u'reason',
   u'depth',
   u'ambivalence',
   u'off.<br',
   u'movie',
   u'example',
   u'decision',
   u'movie',
   u'production',
   u'file']],
 [[u'film', u'board'],
  [u'stand', u'laugh', u'stage'],
  [u'film', u'attempt', u'laugh', u'result', u'thud'],
  [u'desperation',
   u'film',
   u'display',
   u'pity',
   u'involved.<br',
   u'film',
   u'status'],
  [u'sight', u'tv', u'tabloid', u'journalist'],
  [u'scene',
   u'film',
   u'moment',
   u'judge',
   u'lecture',
   u'morality',
   u'mama',
   u'taught',
   u'ya'],
  [u'pomposity', u'moment', u'point'],
  [u'<br', u'effort'],
  [u'band', u'actor', u'character', u'cardboard', u'caricature'],
  [u'film', u'flourish', u'director'],
  [u'film', u'commentary', u'moral', u'ethic', u'level', u'cartoon'],
  [u'bonfire', u'desperation']],
 [[u'cinema', u'friend', u'movie'],
  [u'actor', u'character', u'favourite'],
  [u'movie'],
  [u'sort'],
  [u'minute'],
  [u'rate', u'character', u'development', u'movie']],
 [[u'writing', u'year'],
  [u'actor'],
  [u'movie', u'movie', u'list'],
  [u'movie', u'con-man', u'dialogue', u'character', u'guy'],
  [u'walk']],
 [[u'movie'],
  [u'sorry', u'actress', u'movie', u'performance'],
  [u'dad', u'fame', u'line.<br', u'plot', u'place', u'humour'],
  [u'movie',
   u'house',
   u'family',
   u'laugh',
   u'expression',
   u'movie',
   u'alternative',
   u'collision',
   u'train',
   u'train']],
 [[u'thing', u'movie', u'conceit', u'saint', u'family', u'live'],
  [u'let', u'order', u'saint', u'saint', u'saint'],
  [u'millennium'],
  [u'toy', u'number', u'child', u'family', u'farm'],
  [u'episode', u'morph', u'spleen', u'loser', u'nod', u'empathy'],
  [u'storyline', u'idiocy!<br', u'operation', u'mega-mall', u'answer'],
  [u'egg'],
  [u'man', u'skin-tight', u'mini-dress', u'boot'],
  [u'child', u'embodiment', u'evil'],
  [u'boy', u'lash', u'nimrod', u'pudding']],
 [[u'film', u'mind', u'life', u'colonial', u'generation'], [u'film']],
 [[u'sibling', u'life', u'struggle', u'shadow', u'bitterness', u'family'],
  [u'brother'],
  [u'premise',
   u'here.<br',
   u'loser',
   u'lot',
   u'energy',
   u'person',
   u'thing',
   u'brother',
   u'praise',
   u'limelight-hogging',
   u'guy'],
  [u'favour', u'brother', u'run'],
  [u'reality',
   u'movie',
   u'moment',
   u'music',
   u'video',
   u'moment',
   u'auditor',
   u'operation',
   u'baddy',
   u'time',
   u'outfit',
   u'elf',
   u'highlight',
   u'movie',
   u'swimming',
   u'bitterness',
   u'fare',
   u'half',
   u'fun',
   u'poke',
   u'thing',
   u'commercialism',
   u'time.<br',
   u'ride',
   u'movie',
   u'style'],
  [u'stinker'],
  [u'script',
   u'exception',
   u'scene',
   u'support',
   u'group',
   u'problem.<br',
   u'direction',
   u'card',
   u'year',
   u'ingredient',
   u'mix',
   u'care',
   u'pudding'],
  [u'lump', u'sugar'],
  [u'comedy.<br', u'clause', u'clause', u'clause']],
 [[u'formula', u'comedy'],
  [u'laugh',
   u'talent',
   u'holiday',
   u'guy',
   u'case',
   u'holiday',
   u'blue',
   u'ground',
   u'bunch',
   u'comedy',
   u'movie',
   u'day',
   u'year',
   u'season'],
  [u'plot',
   u'home',
   u'clause',
   u'franchise',
   u'humor',
   u'skirt',
   u'premise',
   u'minute'],
  [u'sure', u'brother'],
  [u'cast', u'comedy', u'snow'],
  [u'snob', u'brother', u'brother'],
  [u'efficiency', u'expert', u'eye'],
  [u'touch', u'quality', u'way', u'with.<br', u'humor', u'brother', u'joke'],
  [u'movie', u'sentimentality', u'lesson'],
  [u'shopping', u'money']],
 [[u'year',
   u'clause',
   u'bit',
   u'moment',
   u'starrer',
   u'trip',
   u'theater.<br',
   u'holiday',
   u'movie'],
  [u'concern',
   u'wedding',
   u'crasher',
   u'helm',
   u'moment',
   u'line',
   u'vehicle',
   u'film'],
  [u'cast',
   u'disappointed.<br',
   u'brother',
   u'time',
   u'parent',
   u'parent',
   u'favoritism',
   u'sibling'],
  [u'time',
   u'family',
   u'saint',
   u'repo',
   u'man',
   u'time',
   u'girlfriend',
   u'birthday.<br',
   u'run',
   u'trouble',
   u'law',
   u'brother',
   u'decade',
   u'jail'],
  [u'cynicism',
   u'clash',
   u'elf',
   u'nature',
   u'efficiency',
   u'expert',
   u'spacey',
   u'toy',
   u'factory',
   u'operation',
   u'operation',
   u'thing',
   u'fail.<br',
   u'film',
   u'moment',
   u'length',
   u'duration'],
  [u'pile',
   u'film',
   u'attempt',
   u'sentimentality',
   u'year',
   u'fruitcake.<br',
   u'charm',
   u'table',
   u'script',
   u'thing'],
  [u'suit', u'charm', u'character', u'fiddle'],
  [u'game', u'face', u'turn', u'vapid.<br', u'film'],
  [u'sure', u'way', u'season', u'cinema', u'way']],
 [[u'movie', u'work'],
  [u'city', u'parking', u'time', u'newspaper', u'listing'],
  [u'plot', u'preview', u'plot', u'turn', u'point'],
  [u'ride', u'bladck', u'kid', u'character'],
  [u'movie', u'kid', u'adult', u'chore']],
 [[u'thanksgiving',
   u'break',
   u'family',
   u'everybody',
   u'movie',
   u'clause',
   u'majority'],
  [u'<br', u'movie', u'plot', u'hole'],
  [u'explanation', u'event'],
  [u'explanation'],
  [u'<br', u'movie', u'character', u'sympathy', u'feeling', u'action'],
  [u'example', u'elf', u'girl', u'elf', u'village'],
  [u'<br', u'family', u'film'],
  [u'rating'],
  [u'family', u'film', u'article', u'conversation'],
  [u'<br', u'movie', u'role', u'movie'],
  [u'moment', u'character', u'movie'],
  [u'frat', u'boy'],
  [u'movies)<br',
   u'movie',
   u'star',
   u'somebody',
   u'effort',
   u'film',
   u'flick'],
  [u'<br', u'opinion', u'flick', u'day', u'rental']],
 [[u'film'],
  [u'writer', u'idea', u'year', u'brother'],
  [u'scene',
   u'place',
   u'kind',
   u'notion',
   u'scene',
   u'drug',
   u'sense',
   u'comedy',
   u'director',
   u'jerker',
   u'end',
   u'point',
   u'following.<br',
   u'disappointment']],
 [[u'eve', u'kid', u'showing'],
  [u'schmaltzy', u'movie'],
  [u'thing', u'variety', u'thing'],
  [u'season', u'ka-ching', u'ka-ching', u'guise'],
  [u'film', u'stature'],
  [u'holiday', u'movie', u'humor', u'adult', u'charm', u'kid'],
  [u'wife', u'lot', u'humor'],
  [u'lot'],
  [u'flick', u'tradition'],
  [u'wife', u'daughter', u'holiday', u'schmaltz', u'dash', u'spice']],
 [[u'film',
   u'performance',
   u'frat',
   u'boy',
   u'self',
   u'time',
   u'child',
   u'movie',
   u'wit',
   u'charm',
   u'film'],
  [u'film', u'wall', u'performance'],
  [u'minute',
   u'film',
   u'touch',
   u'scourge',
   u'film',
   u'minute',
   u'film',
   u'point'],
  [u'actor',
   u'mess',
   u'life',
   u'perspective',
   u'paper',
   u'role',
   u'way',
   u'actor',
   u'film'],
  [u'depth',
   u'warmth',
   u'character',
   u'level',
   u'behavior',
   u'sibling',
   u'infighting'],
  [u'face', u'fun', u'role', u'film'],
  [u'sense', u'fun', u'spirit', u'role', u'character', u'face', u'film'],
  [u'film', u'face', u'agent', u'end', u'movie'],
  [u'direction',
   u'feeling',
   u'holiday',
   u'movie',
   u'feeling',
   u'widow',
   u'display',
   u'torn',
   u'down.<br',
   u'actor',
   u'best',
   u'bring',
   u'table',
   u'script',
   u'direction',
   u'feeling',
   u'subject',
   u'hand',
   u'movie',
   u'thing',
   u'actor',
   u'performance',
   u'film']],
 [[u'film', u'movie', u'camp', u'song', u'end'],
  [u'story',
   u'run',
   u'sheep',
   u'family',
   u'family',
   u'holiday',
   u'kind',
   u'thing',
   u'setting'],
  [u'course',
   u'family',
   u'screw',
   u'home',
   u'series',
   u'set',
   u'girlfriend',
   u'cameo',
   u'role',
   u'home',
   u'parent',
   u'brother',
   u'jinks',
   u'bit',
   u'sibling',
   u'rivalry',
   u'bit'],
  [u'film', u'hill'],
  [u'loser',
   u'time',
   u'role',
   u'note',
   u'assistant',
   u'character',
   u'joke',
   u'person',
   u'film'],
  [u'actor',
   u'film',
   u'dignity',
   u'sincerity',
   u'role',
   u'movie',
   u'lot',
   u'role',
   u'actor',
   u'shame',
   u'lot',
   u'script',
   u'them.<br',
   u'nutshell',
   u'disappointment']],
 [[u'role', u'climber'],
  [u'acting'],
  [u'story',
   u'character',
   u'story',
   u'audience.<br',
   u'scenery',
   u'cinematography',
   u'story',
   u'event',
   u'world',
   u'story'],
  [u'fan',
   u'actor',
   u'generation',
   u'flick',
   u'end',
   u'movie',
   u'direction',
   u'scriptwriting',
   u'production',
   u'editing'],
  [u'shame', u'story'],
  [u'mind']],
 [[u'geography', u'thousand', u'mile', u'scope', u'indochine'],
  [u'movie',
   u'underpinning',
   u'indochine',
   u'relationship',
   u'colonial',
   u'subjects.<br',
   u'dignity',
   u'struggle',
   u'dignity',
   u'peer',
   u'boss'],
  [u'relationship'],
  [u'film',
   u'force',
   u'link',
   u'movie',
   u'character',
   u'remembrance',
   u'colonialism'],
  [u'story', u'ty'],
  [u'story',
   u'way',
   u'remembrance',
   u'tension',
   u'relationships.<br',
   u'black',
   u'ride',
   u'beginning',
   u'end',
   u'movie',
   u'confusion',
   u'world'],
  [u'home']],
 [[u'mountaineer'],
  [u'star', u'idea', u'accent', u'hour'],
  [u'series', u'event', u'space', u'plot', u'inch'],
  [u'viewer',
   u'doesn\xb4t',
   u'fall',
   u'hero',
   u'smoking',
   u'cigarette',
   u'altitude',
   u'foot'],
  [u'target',
   u'audience',
   u'subtitle',
   u'character',
   u'peasant',
   u'closed-off',
   u'city',
   u'accent'],
  [u'course',
   u'aspect',
   u'story',
   u'nazi',
   u'fiddling',
   u'film',
   u'projector',
   u'radio',
   u'car',
   u'device',
   u'freedom',
   u'west'],
  [u'return', u'hero', u'proteg\xe9', u'kind', u'fashion'],
  [u'lot',
   u'scene',
   u'hero',
   u'mark',
   u'respect',
   u'protocol',
   u'rest',
   u'society',
   u'accord',
   u'hero',
   u'reverence',
   u'person',
   u'leader'],
  [u'word', u'audience', u'guy', u'sort', u'way', u'transformation'],
  [u'statistic', u'end', u'film', u'charge', u'movie', u'sort'],
  [u'movie']],
 [[u'told:<br',
   u'person',
   u'tongue',
   u'mouth',
   u'impression',
   u'way',
   u'book',
   u'harrer',
   u'tongue',
   u'sign',
   u'humbleness',
   u'loyalty',
   u'european'],
  [u'book', u'glass', u'time(sorry', u'reason', u'book'],
  [u'tse', u'tung', u'mandala', u'buddha'],
  [u'clothe', u'designer', u'suit'],
  [u'event', u'story', u'time', u'love', u'female'],
  [u'year', u'book', u'harrer', u'person'],
  [u'adaption', u'book'],
  [u'bet', u'harrer', u'star', u'cinematography']],
 [[u'admirer<br'],
  [u'movie', u'fictionalization', u'truth'],
  [u'event', u'purpose', u'documentary'],
  [u'script', u'change', u'impact', u'reaction,<br', u'change', u'character'],
  [u'relationship'],
  [u'<br',
   u'rivalry',
   u'woman',
   u'culture',
   u'music',
   u'box',
   u'gift',
   u's<br',
   u'heart',
   u'movie',
   u'except<br',
   u'photography'],
  [u'story', u'relationship', u'people,<br', u'world', u'order', u'star']],
 [[u'dust', u'courtesy', u'device'],
  [u'slice', u'place', u'movie', u'villain', u'life', u'year'],
  [u'boy',
   u'object',
   u'yearning',
   u'cab',
   u'driver',
   u'film',
   u'role',
   u'future'],
  [u'whisper', u'ear', u'device']],
 [[u'fiend', u'script'],
  [u'movie',
   u'end',
   u'barf',
   u'god',
   u'mother',
   u'movie',
   u'form',
   u'kid',
   u'tv']],
 [[u'drivel', u'girl'],
  [u'writer', u'rule', u'movie'],
  [u'character'],
  [u'b*tch', u'friend', u'beginning', u'person', u'affair'],
  [u'sort', u'deformity'],
  [u'tip', u'future', u'filmmaker', u'year', u'old', u'entertaining'],
  [u'moment', u'movie'],
  [u'crap'],
  [u'club', u'person'],
  [u'clue', u'job', u'notice'],
  [u'character', u'job', u'sense', u'child'],
  [u'body-switching', u'movie', u'hand']],
 [[u'movie'],
  [u'writer', u'plots.<br', u'girl', u'wish', u'birthday', u'adult'],
  [u'acting'],
  [u'plot'],
  [u'job', u'friend', u'work'],
  [u'friend', u'job'],
  [u'course',
   u'end',
   u'idea.<br',
   u'dancing',
   u'scene',
   u'movie',
   u'time',
   u'hate',
   u'movie']],
 [[u'movie',
   u'consideration',
   u'syndrome',
   u'example',
   u'way',
   u'movie',
   u'movie',
   u'<br',
   u'vote'],
  [u'fan', u'comedy', u'joke', u'fan']],
 [[u'actor'],
  [u'<br', u'movie', u'comparison'],
  [u'<br', u'singing', u'performance', u'stage', u'play', u'rap']],
 [[u'actor',
   u'lot',
   u'passion',
   u'number',
   u'number',
   u'film',
   u'music',
   u'video'],
  [u'effort', u'number', u'studio', u'life', u'song'],
  [u'stage', u'performance', u'woman'],
  [u'movie',
   u'character',
   u'hardship',
   u'weight',
   u'refusal',
   u'team',
   u'land',
   u'trouble',
   u'end',
   u'film'],
  [u'emotion', u'writer', u'fault', u'flesh', u'character'],
  [u'character', u'arc', u'job'],
  [u'actor', u'roll', u'character'],
  [u'placement',
   u'number',
   u'time',
   u'movie',
   u'fun',
   u'musical',
   u'number',
   u'girl',
   u'skit'],
  [u'waste', u'time', u'film', u'year']],
 [[u'year',
   u'research',
   u'death',
   u'world',
   u'series',
   u'woman',
   u'birth',
   u'septuplet'],
  [u'year',
   u'release',
   u'film',
   u'time',
   u'tale',
   u'ship',
   u'dream',
   u'boy',
   u'girl',
   u'love',
   u'class',
   u'height',
   u'commitment',
   u'ship',
   u'disaster'],
  [u'anybody',
   u'movie',
   u'life',
   u'million',
   u'fan',
   u'girl',
   u'year',
   u'time',
   u'course',
   u'movie',
   u'time'],
  [u'film', u'love'],
  [u'time',
   u'course',
   u'film',
   u'couple',
   u'year',
   u'film',
   u'price',
   u'movie'],
  [u'movie', u'time'],
  [u'nose'],
  [u'film'],
  [u'movie',
   u'movie',
   u'time',
   u'idea',
   u'movie',
   u'romance',
   u'humor',
   u'disaster',
   u'emotion',
   u'maiden',
   u'voyage.<br',
   u'film',
   u'team',
   u'wreck',
   u'necklace',
   u'set',
   u'diamond'],
  [u'drawing', u'woman', u'day'],
  [u'drawing', u'contact', u'woman', u'drawing'],
  [u'granddaughter', u'team', u'salvage', u'ship'],
  [u'board',
   u'ship',
   u'mother',
   u'importance',
   u'engagement',
   u'marriage',
   u'eradication',
   u'debt',
   u'appearance',
   u'mother'],
  [u'engagement', u'pressure', u'mother', u'marriage', u'attempt', u'suicide'],
  [u'friendship',
   u'thank',
   u'life',
   u'share',
   u'story',
   u'adventure',
   u'bond',
   u'dinner',
   u'gathering',
   u'dance',
   u'music',
   u'beer'],
  [u'woman',
   u'daughter',
   u'lady',
   u'tea',
   u'mother',
   u'sketch',
   u'engagement',
   u'present'],
  [u'moment',
   u'fun',
   u'time',
   u'deck',
   u'ship.<br',
   u'witness',
   u'ship',
   u'collision',
   u'iceberg'],
  [u'drawing', u'note', u'frame', u'plant', u'pocket'],
  [u'enemy', u'board', u'lifeboat'],
  [u'movie',
   u'hater',
   u'reason',
   u'movie',
   u'ton',
   u'award',
   u'love',
   u'movie'],
  [u'acting', u'effect', u'story'],
  [u'love',
   u'movie',
   u'lot',
   u'hype',
   u'baby',
   u'face',
   u'ability',
   u'sight',
   u'film'],
  [u'place', u'heart', u'film', u'time', u'theater'],
  [u'movie', u'classic', u'day.<br']],
 [[u'film', u'person'],
  [u'scene', u'glimpse', u'colonial', u'rule', u'film'],
  [u'similarity', u'fluff'],
  [u'person', u'native', u'person'],
  [u'servant', u'white', u'regard', u'person'],
  [u'<br',
   u'illustration',
   u'thoughtlessness',
   u'relationship',
   u'mother',
   u'servant'],
  [u'time', u'lot', u'time', u'feeling', u'woman', u'existence', u'feeling'],
  [u'example', u'thoughtlessness', u'lace', u'dress'],
  [u'relationship',
   u'fact',
   u'person',
   u'abuse',
   u'garbage.<br',
   u'relationship',
   u'girl',
   u'beginning',
   u'end',
   u'film'],
  [u'time',
   u'plaything',
   u'pet',
   u'girl',
   u'children.<br',
   u'character',
   u'time',
   u'black',
   u'character',
   u'confusing'],
  [u'moment', u'work', u'eating'],
  [u'guess', u'jerk', u'agitator', u'black'],
  [u'fact',
   u'scene',
   u'character',
   u'wasted.<br',
   u'insight',
   u'movie',
   u'snippet',
   u'world',
   u'perspective',
   u'child',
   u'period',
   u'life'],
  [u'film',
   u'headset',
   u'film',
   u'time',
   u'mention',
   u'anti-colonialism',
   u'violence',
   u'independence',
   u'nation'],
  [u'confusion',
   u'maker',
   u'film',
   u'film',
   u'lady',
   u'life',
   u'country',
   u'change.<br',
   u'context',
   u'confusion',
   u'time',
   u'period',
   u'prologue',
   u'epilogue',
   u'adult',
   u'country',
   u'idea'],
  [u'surprise', u'man', u'ride'],
  [u'sort', u'resolution', u'message', u'colonialism']],
 [[u'bomb'],
  [u'music'],
  [u'song', u'movie', u'hit', u'movie'],
  [u'number', u'restroom', u'corn'],
  [u'song'],
  [u'pace', u'character', u'development'],
  [u'lead', u'singing', u'song'],
  [u'movie', u'enthusiast'],
  [u'doubt', u'movie', u'life'],
  [u'waist', u'time', u'money'],
  [u'movie', u'screen', u'character'],
  [u'video', u'movie', u'dog']],
 [[u'buzz'],
  [u'film', u'movie', u'classic'],
  [u'performance', u'tv', u'movie', u'style', u'flair'],
  [u'bunch', u'amateur', u'hour', u'raveup', u'performance', u'montage'],
  [u'song', u'performance', u'film'],
  [u'portion', u'film', u'film', u'point', u'view', u'momentum'],
  [u'remaining', u'hour', u'minute', u'formless', u'rambling', u'mess'],
  [u'tunes.<br', u'tune', u'piece'],
  [u'number', u'half', u'person', u'singing'],
  [u'way', u'number'],
  [u'note', u'dialog', u'stuff', u'stage', u'failure'],
  [u'songs."<br', u'film', u'performance', u'tv', u'movie']],
 [[u'year', u'jewel', u'crown', u'stage', u'musical'],
  [u'hand', u'on-screen'],
  [u'screen', u'version', u'stage', u'weakness'],
  [u'score', u'point', u'production', u'film', u'factor'],
  [u'tune', u'title', u'song', u'song', u'set', u'piece', u'character'],
  [u'film', u'story', u'character', u'lacking', u'resonance'],
  [u'moment',
   u'svengali-like',
   u'manager',
   u'act',
   u'seat',
   u'portion',
   u'film',
   u'story',
   u'villain',
   u'business',
   u'stand-point',
   u'majority',
   u'film'],
  [u'song', u'character', u'surface', u'glitz'],
  [u'member', u'trio', u'film'],
  [u'singer', u'role', u'impact'],
  [u'casting'],
  [u'film',
   u'selling',
   u'point',
   u'contestant',
   u'winner',
   u'role',
   u'singer',
   u'group',
   u'closing',
   u'act',
   u'return'],
  [u'problem', u'movie'],
  [u'film', u'character', u'kind', u'devotion'],
  [u'start', u'diva', u'group'],
  [u'group',
   u'unprofessionalism',
   u'attitude',
   u'charge',
   u'stage',
   u'slack',
   u'voice'],
  [u'film', u'edge', u'charge'],
  [u'story',
   u'sympathy',
   u'mother',
   u'daughter',
   u'implication',
   u'talent',
   u'card',
   u'motherhood',
   u'behavior'],
  [u'effort',
   u'film',
   u'mothering',
   u'scene',
   u'daughter',
   u'unemployment',
   u'office',
   u'girl',
   u'father',
   u'employment',
   u'singing'],
  [u'hand', u'actress', u'gap', u'technique', u'charisma'],
  [u'moment', u'moment'],
  [u'signature', u'moment', u'number', u'department'],
  [u'rage', u'desperation', u'predicament', u'cabaret', u'belting', u'number'],
  [u'highlight'],
  [u'portion', u'film', u'melange', u'event', u'position', u'strut', u'lord'],
  [u'offense',
   u'film',
   u'course',
   u'record',
   u'producer',
   u'film',
   u'implication',
   u'usher',
   u'disco',
   u'era',
   u'film',
   u'depth',
   u'puddle'],
  [u'end', u'result', u'rendition', u'stage', u'emotion', u'energy']],
 [[u'movie',
   u'year',
   u'storyline',
   u'script',
   u'making-it-in-the-music-industry',
   u'films.<br',
   u'here.<br',
   u'make-up',
   u'costume',
   u'choreography',
   u'money',
   u'draw.<br',
   u'throwback',
   u'style',
   u'group',
   u'voice',
   u'empire).<br',
   u'involvement',
   u'garbage']],
 [[u'over-hype'],
  [u'excitement', u'viewer'],
  [u'route',
   u'form',
   u'music',
   u'montage',
   u'acting',
   u'choice',
   u'countdown',
   u'shot']],
 [[u'sense', u'person', u'liking', u'film', u'song', u'story', u'content'],
  [u'film']],
 [[u'reviews', u'month', u'award', u'winning', u'performance'],
  [u'power', u'movie', u'star'],
  [u'product'],
  [u'film',
   u'publicity',
   u'hype',
   u'grace',
   u'performance',
   u'rescue',
   u'movie',
   u'lull',
   u'performance',
   u'attention',
   u'time',
   u'screen'],
  [u'man', u'group', u'life'],
  [u'reviewer', u'movie', u'actor', u'accolade', u'performance'],
  [u'presence', u'voice', u'talent'],
  [u'skill',
   u'film',
   u'performance',
   u'fashion',
   u'photo',
   u'shoot',
   u'taping',
   u'way',
   u'movie'],
  [u'performance',
   u'character',
   u'point',
   u'film.<br',
   u'movie',
   u'minute',
   u'song',
   u'solo']],
 [[u'performance'],
  [u'minute', u'music', u'place', u'performance'],
  [u'thing',
   u'minute',
   u'dialog',
   u'idea',
   u'thing',
   u'number',
   u'jazz',
   u'club',
   u'drummer',
   u'guitar',
   u'piece',
   u'string',
   u'section'],
  [u'inconsistency', u'music', u'composer', u'inability', u'music', u'style'],
  [u'couple', u'piece', u'sound', u'rest', u'film', u'music'],
  [u'silliness', u'snippet', u'group', u'family', u'imitation', u'morphing'],
  [u'film', u'time', u'hour', u'film']],
 [[u'quarter', u'movie'],
  [u'music', u'scene'],
  [u'character', u'drug', u'overdose', u'emotion', u'character'],
  [u'character',
   u'background',
   u'singing',
   u'childhood',
   u'personality',
   u'conflict',
   u'viewer',
   u'care',
   u'lack',
   u'character',
   u'development'],
  [u'movie', u'movie', u'movie', u'opinion'],
  [u'movie',
   u'suit',
   u'story',
   u'hour',
   u'entertaining',
   u'fun',
   u'singing',
   u'performance']],
 [[u'acting', u'story', u'childhood', u'pain', u'revenge'],
  [u'hollywood', u'film'],
  [u'comment',
   u'courtroom',
   u'scene',
   u'character',
   u'plan',
   u'friend',
   u'murder'],
  [u'<br', u'spoilers!!<br', u'alibi', u'priest'],
  [u'motif', u'murderer', u'end', u'story'],
  [u'movie', u'potential']],
 [[u'theme',
   u'identity',
   u'relation',
   u'colonialism',
   u'party',
   u'tension',
   u'memory',
   u'protaganiste',
   u'childhood',
   u'exoticism',
   u'relationship',
   u'parent',
   u'houseboy'],
  [u'mother', u'relationship', u'man'],
  [u'hope', u'hook', u'subtitle'],
  [u'brave']],
 [[u'disappointment',
   u'prequel',
   u'story',
   u'plot',
   u'end',
   u'result',
   u'collection',
   u'set',
   u'piece'],
  [u'continuity',
   u'error',
   u'film',
   u'emergence',
   u'moment',
   u'cinema',
   u'goof',
   u'year'],
  [u'dialogue',
   u'film',
   u'style',
   u'cult',
   u'feeling',
   u'story',
   u'dialogue',
   u'charm'],
  [u'prequel', u'attempt', u'money', u'lack', u'love', u'spade']],
 [[u'kind',
   u'storytelling',
   u'reason',
   u'film',
   u'star',
   u'line',
   u'word',
   u'war',
   u'title'],
  [u'insult', u'filmmaker', u'film', u'story', u'writing', u'credit'],
  [u'make-up', u'eye'],
  [u'blow'],
  [u'thing', u'series', u'intelligence'],
  [u'thing', u'trilogy', u'stupidity'],
  [u'body', u'bout', u'cockiness.<br', u'legend', u'point'],
  [u'scene', u'double'],
  [u'fighter',
   u'double',
   u'fight',
   u'scene',
   u'battle',
   u'middle',
   u'parry',
   u'riposte',
   u'saber',
   u'time',
   u'inch'],
  [u'fight', u'head', u'disbelief', u'disgust.<br', u'writing'],
  [u'dialogue', u'quality'],
  [u'actor', u'line'],
  [u'thing', u'film'],
  [u'effect',
   u'plot',
   u'hole',
   u'centre',
   u'universe',
   u'insight',
   u'character'],
  [u'mistake', u'film'],
  [u'picture', u'limb'],
  [u'film'],
  [u'fan', u'fine', u'arm', u'scream'],
  [u'b-movie',
   u'budget',
   u'ultra-loyalist',
   u'fan',
   u'base',
   u'movie',
   u'standard',
   u'pit']],
 [[u'revenge',
   u'action',
   u'sequence',
   u'hour',
   u'minute',
   u'dialogue',
   u'machination',
   u'rest',
   u'series'],
  [u'thing', u'proceedings', u'build-up', u'birth'],
  [u'movie', u'heaven', u'sequel'],
  [u'environment', u'time'],
  [u'fight'],
  [u'mess'],
  [u'hold', u'prequel'],
  [u'ton', u'money', u'thank', u'god', u'franchise'],
  [u'group', u'kid'],
  [u'thing', u'middle'],
  [u'birth']],
 [[u'preface', u'post', u'fan', u'book', u'game', u'underwear', u'cereal'],
  [u'fan', u'films.<br', u'struggle', u'person', u'movie', u'praise'],
  [u'movie', u'predecessor', u'movie'],
  [u'shortcoming',
   u'script',
   u'dialogue',
   u'scene',
   u'badass',
   u'cgi',
   u'scene',
   u'touch',
   u'plot',
   u'hole'],
  [u'dilemma', u'switch'],
  [u'movie', u'minute', u'way'],
  [u'screen', u'effect', u'gap', u'one-liner', u'great']],
 [[u'9-year-old', u'brat', u'19-year-old', u'year'],
  [u'jedi',
   u'warrior',
   u'hero',
   u'couple',
   u'dream',
   u'child',
   u'friend',
   u'framework',
   u'existence',
   u'man',
   u'wife'],
  [u'story'],
  [u'character',
   u'sense',
   u'etc.).<br',
   u'kind',
   u'anchor',
   u'series',
   u'climax',
   u'hack',
   u'leg',
   u'lava'],
  [u'think', u'character'],
  [u'chance', u'living', u'story', u'character', u'motivation'],
  [u'story', u'year', u'old.<br', u'cool']],
 [[u'wood', u'chopper', u'dreck'],
  [u'destruction', u'couple', u'film'],
  [u'story', u'film', u'crap', u'toy', u'parade'],
  [u'rock'],
  [u'yoda', u'skill'],
  [u'advice', u'anybody'],
  [u'mess', u'fall', u'b***h'],
  [u'brain', u'year']],
 [[u'film',
   u'prequel',
   u'trilogy',
   u'tax',
   u'film-maker',
   u'film-maker.<br',
   u'fall',
   u'man',
   u'darkness',
   u'actor',
   u'minute',
   u'pocket',
   u'sabre',
   u'fight',
   u'lack',
   u'edge',
   u'character',
   u'role',
   u'idea'],
  [u'<br', u'film', u'sequence', u'lava']],
 [[u'menace', u'satisfying.<br', u'year'],
  [u'crawl', u'credit', u'movie', u'experience'],
  [u'story',
   u'farm-boy',
   u'princess',
   u'galaxy',
   u'menace',
   u'wizard',
   u'pirate',
   u'relief',
   u'space-opera',
   u'setting.<br',
   u'formula'],
  [u'formula'],
  [u'credit', u'twist', u'special.<br', u'story', u'tale'],
  [u'darkness', u'picture', u'movie', u'twist', u'time'],
  [u'villain', u'father'],
  [u'light', u'episode', u'problem'],
  [u'revenge',
   u'entertaining',
   u'movie',
   u'effect',
   u'plenty',
   u'action',
   u'scene'],
  [u'acting',
   u'plot',
   u'plot',
   u'burden',
   u'director',
   u'man',
   u'performance',
   u'career',
   u'actor',
   u'plot'],
  [u'film', u'burden'],
  [u'child', u'product', u'miracle', u'birth'],
  [u'explanation', u'observation'],
  [u'testing', u'suspension', u'disbelief'],
  [u'kid',
   u'adult',
   u'villain',
   u'history',
   u'tragedy',
   u'guy',
   u'grace',
   u'redemption',
   u'end.<br'],
  [u'star-spanning',
   u'civilization',
   u'gravity',
   u'gasoline',
   u'physician',
   u'cause',
   u'society',
   u'problem'],
  [u'thing',
   u'child',
   u'guy',
   u'root',
   u'evil',
   u'film',
   u'course',
   u'foolishness'],
  [u'way'],
  [u'doctor', u'droid', u'technology', u'society', u'conclusion'],
  [u'course'],
  [u'present'],
  [u'droid',
   u'protocol',
   u'droid',
   u'apprentice',
   u'planet',
   u'droids".<br',
   u'grief.<br'],
  [u'plot', u'episode'],
  [u'palpatine', u'sense'],
  [u'ty', u'story', u'afterthought', u'movie', u'rating'],
  [u'fun', u'film']],
 [[u'tv-made', u'thriller', u'talk', u'action'],
  [u'plot', u'writing', u'exposition'],
  [u'scenario', u'ditch', u'favor', u'killer'],
  [u'introduction', u'writing', u'stray'],
  [u'lot', u'hysteria', u'thunder', u'lightning', u'effect'],
  [u'failure', u'producer'],
  [u'talent', u'script', u'herring', u'hiding', u'closet']],
 [[u'sport', u'cast', u'thriller', u'actor', u'talk'],
  [u'<br', u'actor', u'woman', u'verify', u'chick', u'flick'],
  [u'network.<br', u'murder', u'scene'],
  [u'<br', u'way', u'year']],
 [[u'class', u'film'],
  [u'inner-city',
   u'school',
   u'film',
   u'subject',
   u'discussion',
   u'class',
   u'lot',
   u'discussion',
   u'class'],
  [u'relationship', u'film', u'scene', u'movie'],
  [u'year'],
  [u'director',
   u'mirror',
   u'technique',
   u'conflict',
   u'character',
   u'scene',
   u'example',
   u'technique',
   u'sexy".<br',
   u'student',
   u'trouble',
   u'end',
   u'film'],
  [u'theme', u'movie', u'africanism', u'matter', u'driver']],
 [[u'crime', u'movie'],
  [u'series', u'crime', u'killer', u'movie', u'investigation'],
  [u'tale', u'cop', u'truth']],
 [[u'thriller',
   u'concept',
   u'acting',
   u'photography',
   u'intention',
   u'execution.<br',
   u'star',
   u'detective',
   u'town',
   u'behest',
   u'friend',
   u'force'],
  [u'investigation',
   u'murder',
   u'theorizing',
   u'existence',
   u'serial',
   u'killer'],
  [u'victim',
   u'romance',
   u'girl',
   u'witness',
   u'school',
   u'blind.<br',
   u'story',
   u'quantum',
   u'leap',
   u'plot',
   u'hole',
   u'movie',
   u'hell'],
  [u'acting', u'end', u'investigator']],
 [[u'mercede', u'road', u'forest', u'tree'],
  [u'<br', u'character', u'hispanic'],
  [u'father', u'mother', u'story'],
  [u'town', u'farm', u'folk', u'hick', u'thumb', u'accent', u'flare'],
  [u'deal'],
  [u'actor.<br',
   u'title',
   u'concern',
   u'serial',
   u'killer',
   u'nickname',
   u'victim'],
  [u'victim'],
  [u'killer', u'hiatus', u'resurface', u'witness', u'ask'],
  [u'job', u'person', u'surprise'],
  [u'film'],
  [u'<br', u'movie', u'town', u'detective'],
  [u'murder', u'body', u'landfill'],
  [u'brilliance', u'victim'],
  [u'logic', u'jennifer'],
  [u'motive', u'killer', u'pack', u'punch'],
  [u'retrospect',
   u'film',
   u'life',
   u'individual',
   u'murder',
   u'wacko',
   u'time',
   u'looney',
   u'toons.<br',
   u'job',
   u'interrogation'],
  [u'bit', u'surprise', u'murder'],
  [u'killer', u'victim', u'opportunity'],
  [u'end', u'shakiness', u'surprise'],
  [u'boy']],
 [[u'actor', u'movie', u'shadow', u'villain'],
  [u'husband',
   u'radio',
   u'frequency',
   u'person',
   u'contact',
   u'living',
   u'<br',
   u'thriller',
   u'spot'],
  [u'way', u'stuff'],
  [u'excitement', u'movie', u'place', u'fool'],
  [u'acting', u'movie']],
 [[u'fact', u'selling', u'movie', u'get-go'],
  [u'hell', u'vampire', u'this.<br', u'movie'],
  [u'force', u'thing', u'hell'],
  [u'end', u'caption'],
  [u'movie', u'credibility', u'thing', u'start'],
  [u'start', u'plot', u'end', u'thumb']],
 [[u'movie', u'exorcist'],
  [u'seeing', u'evp', u'passage', u'fact'],
  [u'movie', u'class', u'pg-13', u'movie'],
  [u'pg-13', u'genre'],
  [u'day', u'blood', u'day', u'day'],
  [u'movie', u'think', u'mentality'],
  [u'jump',
   u'movie',
   u'ending',
   u'movie',
   u'history',
   u'resolution',
   u'money',
   u'movie']],
 [[u'cinema',
   u'fan',
   u'disappointment',
   u'cinematography',
   u'camera',
   u'work',
   u'direction'],
  [u'film', u'horror', u'movie', u'market'],
  [u'bit', u'factor', u'concept'],
  [u'movie', u'reasoning', u'occurrence'],
  [u'acting',
   u'mind',
   u'character',
   u'emotion',
   u'thriller',
   u'movies.<br',
   u'movie']],
 [[u'expert', u'message', u'wife', u'gadget'],
  [u'hint', u'scale'],
  [u'role',
   u'story',
   u'point',
   u'movie',
   u'question',
   u'viewer',
   u'questions.<br',
   u'widower',
   u'wife'],
  [u'bit', u'actor', u'waacky-hijink', u'role', u'year'],
  [u'wrinkle',
   u'guile',
   u'panache',
   u'quarter',
   u'century',
   u'performance',
   u'script'],
  [u'plot', u'path', u'path'],
  [u'path', u'sort', u'denouement', u'ty'],
  [u'reason', u'junk', u'support', u'love']],
 [[u'trailer', u'film', u'month', u'release', u'film', u'life', u'phenomenon'],
  [u'thought', u'horror', u'film', u'year', u'crap'],
  [u'movie', u'trailer', u'film', u'element'],
  [u'advertisement', u'movie', u'disappointment.<br', u'movie', u'year'],
  [u'movie', u'week', u'release'],
  [u'movie', u'fact', u'thing', u'movie', u'crap'],
  [u'man', u'answer', u'mean'],
  [u'film', u'clich\xe9'],
  [u'wife', u'voice', u'appliance'],
  [u'message', u'wife'],
  [u'wife', u'person'],
  [u'movie', u'person'],
  [u'clock-stopping-at-the-same-exact-time-every-night',
   u'trick',
   u'spirit',
   u'menace',
   u'hero'],
  [u'film', u'jump', u'scene', u'scene'],
  [u'door', u'sequel'],
  [u'message', u'message', u'voice', u'evp', u'tune'],
  [u'end', u'horror', u'film'],
  [u'reason', u'film', u'person', u'fan'],
  [u'sure', u'aspect', u'movie', u'concept', u'throat', u'face'],
  [u'film'],
  [u'movie', u'commercial', u'ghost', u'film']],
 [[u'life',
   u'architect',
   u'family',
   u'man',
   u'turn',
   u'wife',
   u'accident',
   u'tyre',
   u'car'],
  [u'day', u'man', u'contact', u'wife'],
  [u'phone',
   u'phone',
   u'contact',
   u'man',
   u'wife',
   u'noise',
   u'event',
   u'shelf',
   u'copy'],
  [u'hearing', u'press', u'minute'],
  [u'film', u'time', u'thriller'],
  [u'hour',
   u'sequence',
   u'awe',
   u'progression',
   u'stillness',
   u'tragedy',
   u'haunt',
   u'halt',
   u'film'],
  [u'jump', u'context'],
  [u'style', u'editing', u'camera-work', u'action'],
  [u'climax'],
  [u'explanation', u'picture'],
  [u'conclusion', u'rock'],
  [u'job', u'point', u'lighting', u'camera-work'],
  [u'lighting', u'score', u'flick'],
  [u'hardware',
   u'empty.<br',
   u'film',
   u'heart',
   u'component',
   u'character',
   u'story'],
  [u'connection', u'sentiment', u'material'],
  [u'thrill', u'stuff', u'grave'],
  [u'tv', u'screen'],
  [u'impact', u'performance'],
  [u'actor', u'map', u'performance'],
  [u'clunker', u'pear', u'shape', u'matter', u'crop', u'horror'],
  [u'shame', u'flick', u'promise', u'idea', u'cast', u'hand']],
 [[u'chocolat',
   u'tone',
   u'poem',
   u'effect',
   u'colonialism',
   u'family',
   u'year',
   u'rule'],
  [u'theme', u'film', u'scope', u'emphasis'],
  [u'film', u'perspective', u'adult', u'childhood', u'home', u'country'],
  [u'woman',
   u'childhood',
   u'father',
   u'government',
   u'official',
   u'friendship',
   u'manservant'],
  [u'heart', u'film', u'mother', u'relationship', u'tension'],
  [u'<br', u'household', u'public', u'space'],
  [u'family',
   u'room',
   u'limit',
   u'house',
   u'servant',
   u'shower',
   u'bronze',
   u'body',
   u'family'],
  [u'husband', u'business', u'rule', u'society'],
  [u'sequence',
   u'bedroom',
   u'dress',
   u'image',
   u'mirror',
   u'longing',
   u'eye',
   u'interaction'],
  [u'<br',
   u'form',
   u'bond',
   u'manservant',
   u'plate',
   u'ant',
   u'shoulder',
   u'walk',
   u'sky'],
  [u'spite',
   u'bond',
   u'nature',
   u'relationship',
   u'command',
   u'conversation',
   u'teacher',
   u'home',
   u'stand',
   u'dinner',
   u'table',
   u'command'],
  [u'plane',
   u'propeller',
   u'land',
   u'mountain',
   u'crew',
   u'passenger',
   u'compound',
   u'replacement'],
  [u'visitor',
   u'disdain',
   u'owner',
   u'coffee',
   u'plantation',
   u'food',
   u'kitchen',
   u'mistress',
   u'hiding',
   u'room'],
  [u'upset',
   u'balance',
   u'shower',
   u'servant',
   u'taunt',
   u'attraction',
   u'confrontation',
   u'manservant.<br',
   u'childhood',
   u'memory',
   u'director',
   u'isolation',
   u'land'],
  [u'victim', u'oppressor', u'guy'],
  [u'fact', u'boy', u'man', u'character', u'dignity', u'stature', u'pain'],
  [u'pace', u'audience', u'film', u'phrase', u'coach', u'emotion'],
  [u'truth', u'gesture', u'glance', u'longing', u'heart']],
 [[u'sheer', u'absurdity', u'movie', u'life', u'piece', u'crap'],
  [u'lack',
   u'moment',
   u'cop-out',
   u'trick',
   u'music',
   u'character',
   u'door',
   u'push',
   u'curtain'],
  [u'thing', u'reason', u'character', u'story', u'line', u'character'],
  [u'component', u'film']],
 [[u'idea', u'actor', u'story', u'writing', u'depth'], [u'theater']],
 [[u'dirth', u'movie', u'market', u'faith', u'film', u'industry', u'endeavor'],
  [u'plot', u'headache'],
  [u'effort', u'suspension', u'disbelief'],
  [u'ordeal', u'demise'],
  [u'sure',
   u'heart-stopper',
   u'moment',
   u'noise',
   u'viewer.<br',
   u'acting',
   u'role',
   u'date'],
  [u'quality', u'offer', u'archietecture'],
  [u'idea', u'world', u'shadow', u'living', u'grave']],
 [[u'movie', u'year'],
  [u'plot', u'character', u'premise'],
  [u'author', u'wife', u'car', u'accident', u'bug'],
  [u'grief', u'apartment', u'hobby'],
  [u'guy', u'fellow', u'tv'],
  [u'person',
   u'thank',
   u'deal',
   u'person',
   u'message',
   u'person',
   u'tape',
   u'recorder',
   u'video',
   u'camera',
   u'cell',
   u'phone',
   u'cell'],
  [u'explanation'],
  [u'piece', u'paper', u'knock', u'stuff', u'pictogram'],
  [u'house', u'nick', u'time', u'guy'],
  [u'living', u'electronic', u'time'],
  [u'nod', u'agreement'],
  [u'serial', u'killer', u'working', u'demon', u'style', u'swoop', u'cartoon'],
  [u'message', u'grave', u'son', u'way', u'kid', u'horror'],
  [u'kid', u'smile']],
 [[u'trailer'],
  [u'start', u'twist', u'monkey'],
  [u'scary', u'film', u'noise', u'bang', u'audience', u'jump'],
  [u'shame', u'idea']],
 [[u'shame', u'story', u'latch', u'start', u'head', u'time', u'conclusion'],
  [u'end',
   u'fault',
   u'pleasure',
   u'star',
   u'brand',
   u'movie',
   u'bit',
   u'performance'],
  [u'man',
   u'wife',
   u'spirit',
   u'afterlife',
   u'idea',
   u'fuzz',
   u'business',
   u'television',
   u'screen',
   u'broadcast.<br',
   u'idea',
   u'spirit',
   u'airwave',
   u'lot',
   u'person',
   u'comment'],
  [u'suspension', u'disbelief', u'film', u'hell', u'place', u'credit'],
  [u'indeed.<br', u'movie', u'film', u'fault', u'filmmaker'],
  [u'awake', u'guess']],
 [[u'effect', u'performance'],
  [u'<br', u'pony', u'movie', u'year', u'crime'],
  [u'<br',
   u'movie',
   u'letter',
   u'baby',
   u'boom',
   u'generation',
   u'prejudice',
   u'service',
   u'way',
   u'resolution',
   u'end.<br',
   u'entertaining',
   u'movie'],
  [u'film', u'movie', u'level'],
  [u'point', u'film'],
  [u'<br', u'choice', u'place', u'time', u'year'],
  [u'director', u'vision', u'price'],
  [u'idiocy', u'innocence', u'naivety', u'quality']],
 [[u'half', u'film', u'half', u'experience'],
  [u'film', u'person', u'character']],
 [[u'person', u'proof', u'man', u'lack', u'intelligence'],
  [u'movie', u'convention', u'leg', u'drug', u'girlfriend'],
  [u'addition', u'product', u'placement', u'film'],
  [u'film']],
 [[u'movie', u'year', u'theater', u'home', u'confidence', u'movie', u'year'],
  [u'movie',
   u'joke',
   u'joke',
   u'year',
   u'displeasure',
   u'bus',
   u'trip',
   u'favor',
   u'skip',
   u'aisle']],
 [[u'premise'],
  [u'movie',
   u'chick',
   u'flick',
   u'person',
   u'airport',
   u'thing',
   u'degree',
   u'turn',
   u'<br',
   u'kind',
   u'mind',
   u'love',
   u'story',
   u'nonsense',
   u'movie',
   u'theater'],
  [u'opinion',
   u'meta-horror',
   u'film',
   u'sceam',
   u'logic',
   u'time',
   u'sependipity',
   u'awesome',
   u'dreamworld',
   u'<br',
   u'scope',
   u'character'],
  [u'film', u'sicko', u'plus', u'book'],
  [u'proceed',
   u'freak',
   u'victim',
   u'way',
   u'guy',
   u'<br',
   u'chick',
   u'flick']],
 [[u'story', u'acting'],
  [u'voice', u'temperament'],
  [u'idea', u'thing', u'boy', u'film']],
 [[u'comedy',
   u'teenager',
   u'taste',
   u'moment',
   u'way',
   u'point',
   u'voice',
   u'belief'],
  [u'life']],
 [[u'release', u'film', u'life'],
  [u'year'],
  [u'point', u'plot', u'cast'],
  [u'stupidity', u'kind', u'kind', u'place', u'screen']],
 [[u'movie', u'help'],
  [u'crapfest'],
  [u'movie',
   u'film',
   u'bastardization.<br',
   u'military',
   u'fringe',
   u'element',
   u'wind',
   u'child',
   u'school'],
  [u'child', u'world', u'asininity'],
  [u'film', u'bomb', u'film', u'moment'],
  [u'minute', u'screen', u'time'],
  [u'man',
   u'tale',
   u'actor',
   u'vacation',
   u'moment',
   u'screen',
   u'here.<br',
   u'appearance',
   u'biker'],
  [u'role', u'biker', u'film.<br', u'teacher', u'kid', u'skill', u'time'],
  [u'movie',
   u'house',
   u'moment',
   u'dance',
   u'sequence',
   u'series',
   u'robot',
   u'help',
   u'music',
   u'crew'],
  [u'scene', u'film', u'dog', u'spittle.<br', u'film'],
  [u'film', u'bout', u'loser', u'kid', u'hero', u'rent'],
  [u'loser'],
  [u'badger']],
 [[u'sort',
   u'family',
   u'parody',
   u'blending',
   u'gentleman',
   u'metal',
   u'jacket',
   u'doubt',
   u'movie',
   u'movie',
   u'spot'],
  [u'gag', u'line']],
 [[u'film', u'life', u'living', u'group', u'boy', u'marine'],
  [u'film', u'lot', u'moment', u'watch'],
  [u'film'],
  [u'confrontation', u'boy', u'film', u'boy', u'revenge'],
  [u'film', u'day', u'laughter']],
 [[u'direction'],
  [u'close-up', u'shot', u'scene', u'close-up', u'impact'],
  [u'<br',
   u'scenery',
   u'backdrop',
   u'cantina',
   u'estate',
   u'town',
   u'roll',
   u'journey',
   u'revenge'],
  [u'glimpse', u'place', u'camera', u'picture', u'head'],
  [u'<br', u'score', u'emotion'],
  [u'story'],
  [u'thing', u'person', u'writing'],
  [u'<br', u'thriller', u'storyline', u'premise', u'thing'],
  [u'storyline', u'movie'],
  [u'<br', u'film'],
  [u'movie', u'head', u'film']],
 [[u'hour', u'movie', u'act', u'movie', u'title'],
  [u'thing', u'film', u'theme', u'tune'],
  [u'cd.dont']],
 [[u'movie', u'premise', u'talent', u'turkey'],
  [u'friend', u'movie', u'mind', u'praise', u'story'],
  [u'character', u'pilot', u'plane', u'rest', u'movie'],
  [u'<br', u'texan', u'horse', u'businessman', u'tag', u'ride'],
  [u'death', u'meeting', u'associate'],
  [u'<br',
   u'character',
   u'whore',
   u'attack',
   u'man',
   u'turn',
   u'stab',
   u'knife',
   u'thing',
   u'convent'],
  [u'explanation', u'talent', u'script', u'editing']],
 [[u'movie',
   u'actor',
   u'talent',
   u'potboiler".<br',
   u'plenty',
   u'stereotype',
   u'situation',
   u'popcorn.<br',
   u'story',
   u'line',
   u'movie',
   u'point',
   u'tv',
   u'series.<br',
   u'drug-lord',
   u'role',
   u'associate',
   u'quinn-martin',
   u'cop'],
  [u'character', u'reason', u'love', u'wife'],
  [u'wife', u'companionship', u'body', u'movie', u'waste', u'time']],
 [[u'thriller'],
  [u'plot'],
  [u'twist'],
  [u'eye', u'candy'],
  [u'movie', u'scream'],
  [u'plot', u'thing', u'movie'],
  [u'hotel', u'manager', u'board'],
  [u'twist', u'story', u'character', u'joke'],
  [u'thriller']],
 [[u'throat', u'blood', u'squirt', u'end', u'character'],
  [u'guy', u'guy', u'way'],
  [u'movie', u'guy'],
  [u'photography', u'editing', u'motion', u'picture', u'waste', u'talent'],
  [u'let', u'category', u'corpse']],
 [[u'payback',
   u'game',
   u'drama',
   u'revenge',
   u'plot',
   u'story',
   u'line',
   u'stage',
   u'firework'],
  [u'man',
   u'trophy',
   u'wife',
   u'mob',
   u'boss',
   u'gangster',
   u'mansion',
   u'henchman'],
  [u'wife', u'attention', u'stranger', u'husband', u'boredom', u'love'],
  [u'hero', u'reaction', u'husband', u'movie', u'excuse', u'violence'],
  [u'actor', u'figure', u'prince'],
  [u'accent'],
  [u'cameo', u'player', u'rock', u'star']],
 [[u'film', u'pace'],
  [u'american', u'rest', u'world', u'reason'],
  [u'kid', u'planet'],
  [u'world', u'view', u'world', u'nation'],
  [u'film', u'luck', u'time']],
 [[u'premise', u'ty', u'middle'],
  [u'person', u'segment'],
  [u'person', u'plot'],
  [u'section', u'minute', u'flick'],
  [u'thing']],
 [[u'wife', u'yr', u'son'],
  [u'writing', u'pixar', u'excursion'],
  [u'fact', u'time', u'attention'],
  [u'movie',
   u'story',
   u'son',
   u'walk',
   u'out.<br',
   u'film',
   u'concept',
   u'screenplay'],
  [u'impression', u'family', u'lord', u'sequence', u'minute', u'time']],
 [[u'film', u'work', u'borrowing'],
  [u'review',
   u'singing',
   u'frog',
   u'cartoon',
   u'baby',
   u'darlin',
   u'ragtime',
   u'gal'],
  [u'feature',
   u'similarity',
   u'storyline',
   u'inventor',
   u'corporation',
   u'inventions.<br',
   u'camera',
   u'angle',
   u'city',
   u'environments.<br',
   u'robot',
   u'servant',
   u'robot',
   u'household',
   u'design',
   u'film',
   u'sort',
   u'look.<br',
   u'contradiction',
   u'quote',
   u'end',
   u'company',
   u'innovator',
   u'catalog',
   u'film',
   u'clone',
   u'tweak',
   u'storyline',
   u'ethnicity).<br',
   u'filmmaker',
   u'story',
   u'speak',
   u'object',
   u'noise',
   u'direction',
   u'attention',
   u'span',
   u'less.<br',
   u'villain',
   u'pleasure'],
  [u'landscape', u'mid-90s.<br', u'film'],
  [u'end',
   u'cartoon',
   u'innovating',
   u'storytelling',
   u'screen',
   u'proof',
   u'virtue']],
 [[u'movie', u'semblance', u'plot', u'series', u'character', u'story'],
  [u'film'],
  [u'movie',
   u'pile',
   u'garbage',
   u'person',
   u'animation',
   u'skill',
   u'creativity',
   u'storytelling',
   u'ability'],
  [u'effort', u'studio'],
  [u'morale',
   u'motivation',
   u'problem',
   u'lack',
   u'oversight',
   u'quality',
   u'control'],
  [u'movie', u'movie', u'time', u'list']],
 [[u'truth', u'storyline', u'film', u'rubbish'],
  [u'robinson', u'film', u'place'],
  [u'idea', u'rubbish'],
  [u'brother', u'half', u'way', u'story'],
  [u'character', u'robinson', u'film'],
  [u'time', u'waste']],
 [[u'screen', u'version', u'man', u'year', u'date', u'year'],
  [u'kind',
   u'movie',
   u'producer',
   u'money',
   u'experience',
   u'make',
   u'attention',
   u'alimony',
   u'drug',
   u'dealer',
   u'bodyguard',
   u'limb',
   u'charge',
   u'daughter',
   u'family'],
  [u'action', u'score', u'reel', u'impression'],
  [u'case', u'choice', u'director', u'version', u'improvement']],
 [[u'reason'],
  [u'tooth', u'schooler'],
  [u'woman', u'schooler'],
  [u'teen', u'adult']],
 [[u'killer-thriller', u'movie', u'time'],
  [u'movie', u'fear'],
  [u'person', u'thriller', u'movie', u'different.<br', u'movie'],
  [u'mess'],
  [u'script',
   u'movie',
   u'scream',
   u'scream',
   u'sequel',
   u'movie',
   u'century']],
 [[u'film', u'school'],
  [u'plot', u'lot', u'year', u'actor', u'student'],
  [u'film', u'nostalgia'],
  [u'nostalgia', u'factor'],
  [u'plot',
   u'city',
   u'school',
   u'threatening',
   u'bus',
   u'student',
   u'city',
   u'school'],
  [u'student', u'school'],
  [u'fact', u'character', u'life', u'mansion'],
  [u'money', u'school', u'property', u'taxe'],
  [u'school', u'board', u'school', u'student'],
  [u'college', u'school'],
  [u'film']],
 [[u'plot', u'film', u'lot', u'hole'],
  [u'car', u'movie', u'lot', u'car'],
  [u'enjoyment', u'place', u'town'],
  [u'piece', u'local'],
  [u'copy', u'video', u'store'],
  [u'copy', u'path', u'race', u'town']],
 [[u'comedy'],
  [u'hair', u'scene', u'work', u'face'],
  [u'suitor', u'guy', u'room', u'scene', u'formula', u'reason'],
  [u'array', u'talent'],
  [u'line'],
  [u'humour', u'trouble', u'fart', u'joke', u'laugh'],
  [u'basketball',
   u'scene',
   u'ham',
   u'predicament',
   u'form',
   u'opponent',
   u'smile',
   u'reaction'],
  [u'reaction'],
  [u'bit', u'work', u'story', u'end', u'film', u'failure', u'writing'],
  [u'tv', u'night', u'cash']],
 [[u'potential', u'reality'],
  [u'movie'],
  [u'action'],
  [u'joke'],
  [u'character'],
  [u'plot', u'point']],
 [[u'film',
   u'offer',
   u'imagination',
   u'premise',
   u'execution',
   u'thing',
   u'comedy',
   u'energy'],
  [u'insurance',
   u'risk',
   u'manager',
   u'wife',
   u'cheating',
   u'scuba',
   u'instructor',
   u'day',
   u'honeymoon'],
  [u'home',
   u'friend',
   u'party',
   u'school',
   u'year',
   u'alert',
   u'person',
   u'date',
   u'person',
   u'thing',
   u'salsa',
   u'dancing',
   u'eating',
   u'food'],
  [u'day',
   u'marriage',
   u'film',
   u'directing',
   u'effort',
   u'screenplay',
   u'parent',
   u'film',
   u'classic',
   u'piece',
   u'drivel'],
  [u'film'],
  [u'film', u'start', u'scene', u'ridiculousness', u'script'],
  [u'script', u'thought', u'time', u'energy', u'event'],
  [u'time', u'film', u'character', u'speech'],
  [u'lot', u'script', u'way', u'film', u'comedy', u'romance']],
 [[u'lot', u'thing', u'movie'],
  [u'way'],
  [u'boring',
   u'guy',
   u'notch',
   u'boring',
   u'guy',
   u'belt',
   u'reality',
   u'effort',
   u'friend',
   u'assortment',
   u'clich\xe9',
   u'guy',
   u'guy',
   u'storyline',
   u'beginning',
   u'any-movie',
   u'style',
   u'plot',
   u'turn',
   u'average',
   u'knock-knock'],
  [u'problem',
   u'character',
   u'development',
   u'school',
   u'play',
   u'writer',
   u'stock',
   u'bit'],
  [u'joke',
   u'version',
   u'standard',
   u'gross-out',
   u'humour',
   u'regulation',
   u'chunder',
   u'scene',
   u'man',
   u'etc.<br',
   u'conclusion',
   u'fact',
   u'movie',
   u'meaning',
   u'word',
   u'shart',
   u'thing'],
  [u'dog',
   u'dinner',
   u'sugar',
   u'coating',
   u'viewer',
   u'taste',
   u'end',
   u'rancid.<br',
   u'comment',
   u'film',
   u'between-friends-season',
   u'movie']],
 [[u'movie', u'sitcom', u'acting'],
  [u'movie', u'thing'],
  [u'plot'],
  [u'plot', u'outcome']],
 [[u'film'],
  [u'order',
   u'items.<br',
   u'wonder',
   u'money',
   u'drivel.<br',
   u'reviewer',
   u'beggar',
   u'belief',
   u'person',
   u'film',
   u'actor',
   u'rubbish']],
 [[u'stuff',
   u'movie',
   u'studio',
   u'years.<br',
   u'couple',
   u'opposite',
   u'plot',
   u'line',
   u'surprise',
   u'movie',
   u'sight',
   u'gag',
   u'fart',
   u'joke'],
  [u'movie'],
  [u'deal',
   u'money',
   u'kind',
   u'movie',
   u'them.<br',
   u'splendor',
   u'movie',
   u'head',
   u'movie',
   u'executive',
   u'movie',
   u'sense',
   u'movie',
   u'unknown',
   u'stuff',
   u'airplane']],
 [[u'movie', u'year', u'quality', u'filmmaker', u'comedy'],
  [u'<br', u'grating', u'charmless', u'performance', u'year'],
  [u'schtick'],
  [u'talent', u'schtick', u'break', u'material'],
  [u'movie', u'chemistry', u'shame', u'actress', u'career'],
  [u'movie', u'career', u'material', u'task', u'actress'],
  [u'exception', u'moment', u'boss', u'friend', u'film'],
  [u'character'],
  [u'accent', u'unfunny.<br', u'premise', u'promise'],
  [u'writer', u'comedy', u'excuse', u'comedy']],
 [[u'thriller'],
  [u'type', u'horror', u'movie', u'thriller', u'time'],
  [u'movie', u'character', u'story', u'sympathy', u'hatred', u'person'],
  [u'character', u'clerk'],
  [u'girl', u'role', u'movie', u'heck', u'break'],
  [u'atrendant', u'plot'],
  [u'guy', u'flight'],
  [u'guy', u'airport', u'movie'],
  [u'character', u'liner', u'use', u'plot', u'guy', u'plane'],
  [u'plot'],
  [u'scene', u'woman', u'character', u'hotel', u'executive', u'charge'],
  [u'color'],
  [u'movie', u'executive', u'woman', u'idiot'],
  [u'movie', u'plot', u'device', u'movie', u'conclusion'],
  [u'hotel', u'clerk', u'drop', u'phone', u'hotel', u'boss']],
 [[u'movie', u'appeal', u'charisma', u'notoriety'],
  [u'recipe', u'title', u'movie.<br', u'doubt'],
  [u'<br', u'guy', u'parent', u'movie', u'scene', u'title', u'script'],
  [u'actor', u'thing', u'lot', u'story', u'script.<br']],
 [[u'fun',
   u'death',
   u'violence',
   u'innuendo',
   u'adult',
   u'child',
   u'crudeness',
   u'alcohol',
   u'abuse',
   u'minor',
   u'drug',
   u'theft',
   u'parent',
   u'babysitter',
   u'hell',
   u'joke',
   u'polouse',
   u'person',
   u'kid',
   u'house',
   u'middle',
   u'night',
   u'yup',
   u'kid',
   u'movie'],
  [u'element',
   u'woman',
   u'house',
   u'husband',
   u'prisoner',
   u'year',
   u'neighborhood',
   u'kid'],
  [u'parent',
   u'kid',
   u'movie',
   u'kid',
   u'teen',
   u'today',
   u'movie',
   u'scenario',
   u'rub'],
  [u'adult', u'audience'],
  [u'character',
   u'clueless',
   u'parent',
   u'police',
   u'friend',
   u'babysitter',
   u'beer',
   u'boyfriend'],
  [u'material', u'kid', u'child', u'movie'],
  [u'computer', u'animation', u'voice', u'work', u'flick'],
  [u'money', u'time', u'child', u'mind', u'rent', u'bug', u'way', u'film']],
 [[u'children', u'movie', u'tearjerker', u'quality'],
  [u'voice', u'rest', u'talent'],
  [u'chance', u'movie'],
  [u'sugar', u'year', u'age']],
 [[u'movie',
   u'recollection',
   u'kind',
   u'review.<br',
   u'person',
   u'kid',
   u'favor',
   u'book'],
  [u'mind', u'film.<br', u'book', u'mouse', u'person'],
  [u'book', u'life', u'departure', u'home', u'journey']],
 [[u'year', u'set'],
  [u'couple', u'set', u'home', u'orphanage', u'brother', u'son'],
  [u'home', u'sibling', u'mouse'],
  [u'sense', u'world', u'family', u'cat'],
  [u'experience', u'family', u'loyalty', u'friendship'],
  [u'brother', u'embarrassment', u'model', u'boat', u'race.<br', u'cast']],
 [[u'couple', u'child'],
  [u'home', u'child'],
  [u'rest',
   u'clich\xe9',
   u'family',
   u'problem',
   u'jealousy',
   u'brother',
   u'end',
   u'issue',
   u'family'],
  [u'blunt',
   u'way.<br',
   u'director',
   u'mouse',
   u'clich\xe9',
   u'minute',
   u'clich\xe9'],
  [u'gig', u'use', u'size.<br', u'film', u'sibling'],
  [u'gig', u'cat', u'clich\xe9s']],
 [[u'movie'],
  [u'satire'],
  [u'movie', u'clich\xe9'],
  [u'<br', u'line', u'movie'],
  [u'fate', u'movie'],
  [u'price']],
 [[u'<br', u'half', u'clone'],
  [u'murder', u'it`s', u'audience', u'bed', u'attorney'],
  [u'film',
   u'credential',
   u'client',
   u'type',
   u'film',
   u'manner',
   u'respect',
   u'thriller',
   u'thing',
   u'man',
   u'time',
   u'court',
   u'room',
   u'drama',
   u'man']],
 [[u'idea', u'boy', u'havoc'],
  [u'movie', u'way'],
  [u'cartoon',
   u'writer',
   u'slapstick',
   u'person',
   u'bear',
   u'baseball',
   u'bat'],
  [u'cartoon',
   u'motion',
   u'picture.<br',
   u'film',
   u'hero',
   u'baby',
   u'door',
   u'parent',
   u'adoption'],
  [u'family',
   u'junior',
   u'time.<br',
   u'orphanage',
   u'nun',
   u'pen',
   u'pal',
   u'letter'],
  [u'wife',
   u'yasbeck',
   u'child',
   u'order',
   u'parent',
   u'neighborhood.<br',
   u'member',
   u'household',
   u'fact',
   u'camping',
   u'trip',
   u'bear',
   u'site',
   u'cat',
   u'father',
   u'politician.<br',
   u'junior',
   u'revenge',
   u'person'],
  [u'mother',
   u'bitch',
   u'grandfather',
   u'girl',
   u'kid',
   u'brat.<br',
   u'junior',
   u'laughs',
   u'film',
   u'message'],
  [u'kid'],
  [u'junior', u'twerp'],
  [u'time', u'kid'],
  [u'lot', u'profanity', u'prank', u'parent', u'screen'],
  [u'person',
   u'pleasure',
   u'film',
   u'liking',
   u'prevailing',
   u'opinion',
   u'viewer',
   u'movie',
   u'piece',
   u'crap']],
 [[u'life', u'ticket', u'movie', u'theater'],
  [u'mistake', u'life'],
  [u'offense', u'horror', u'credit', u'demon', u'child', u'head', u'sign'],
  [u'moment',
   u'film.<br',
   u'plot',
   u'wife',
   u'success',
   u'film',
   u'mind',
   u'problem',
   u'child'],
  [u'intent', u'frame', u'child', u'rudest', u'demon-spawn', u'screen'],
  [u'child', u'character'],
  [u'film', u'hell-child'],
  [u'disgust', u'person', u'theater', u'movie'],
  [u'way', u'sequel', u'body'],
  [u'marathon', u'sequel', u'minute'],
  [u'score'],
  [u'negative', u'film']],
 [[u'night',
   u'movie',
   u'time.<br',
   u'movie',
   u'cause',
   u'story',
   u'different.<br',
   u'movie',
   u'lead',
   u'movie',
   u'feel',
   u'person',
   u'movie.<br',
   u'music',
   u'chill',
   u'movie'],
  [u'less.<br', u'thriller.<br', u'again.<br', u'movie']],
 [[u'problem', u'movie', u'decade'],
  [u'movie', u'boy', u'parent', u'trouble'],
  [u'movie'],
  [u'sequel', u'fate']],
 [[u'person'],
  [u'boy', u'wreck', u'havoc', u'couple', u'yasbeck'],
  [u'film', u'child', u'kid', u'film'],
  [u'time'],
  [u'thing', u'sequel']],
 [[u'sub-par', u'plot', u'year', u'actor'], [u'actor', u'sequel']],
 [[u'movie', u'time', u'kid', u'fact'],
  [u'language', u'matter', u'kid'],
  [u'film',
   u'character',
   u'order',
   u'audience',
   u'movie',
   u'crowd',
   u'person',
   u'way',
   u'8-year-old',
   u'movie',
   u'kid',
   u'year'],
  [u'sure', u'film', u'box', u'office', u'reason', u'niche', u'market']],
 [[u'movie'],
  [u'comedy', u'level', u'beggar', u'belief'],
  [u'kind',
   u'father',
   u'child',
   u'kudo',
   u'dignity',
   u'onslaught',
   u'performance',
   u'humour'],
  [u'attempt', u'sentimentality', u'crudity', u'movie', u'experience'],
  [u'lowlight', u'thing', u'kid', u'actor', u'screen', u'mouth']],
 [[u'kid', u'way', u'type', u'adult', u'thieve', u'turn'],
  [u'brat', u'kid', u'problem'],
  [u'couple', u'husband', u'bit', u'kid', u'chance', u'mother'],
  [u'character', u'movie', u'laugh'],
  [u'sequel', u'film', u'fact', u'character', u'character', u'film'],
  [u'kid', u'kind', u'sequel'],
  [u'plot', u'parent', u'kid', u'way', u'orphanage', u'party', u'hellion'],
  [u'hellion', u'contact', u'convict', u'sort'],
  [u'character', u'father'],
  [u'kid', u'day', u'week']],
 [[u'comedy'],
  [u'sign', u'movie', u'emotion'],
  [u'theater', u'laughter', u'half', u'movie', u'tear', u'half'],
  [u'movie', u'judge']],
 [[u'movie', u'acted', u'directed', u'story'],
  [u'life', u'experiance', u'boy'],
  [u'football',
   u'program',
   u'town',
   u'boy',
   u'year',
   u'practice',
   u'travel',
   u'fun',
   u'football',
   u'team'],
  [u'movie'],
  [u'boy', u'life'],
  [u'type', u'program', u'school'],
  [u'movie', u'screen']],
 [[u'drivel'],
  [u'cinematography',
   u'movie',
   u'week',
   u'score',
   u'touching',
   u'face',
   u'person',
   u'life',
   u'motivation'],
  [u'glimpse',
   u'coach',
   u'motivation',
   u'dialog',
   u'opinion',
   u'opinion',
   u'tribute',
   u'comfort',
   u'zone',
   u'time',
   u'life'],
  [u'lesson'],
  [u'thing', u'thing'],
  [u'movie', u'heart']],
 [[u'story', u'story', u'movie', u'couple'],
  [u'performance', u'academy', u'award', u'compassion', u'movie']],
 [[u'star', u'action', u'master', u'suspense'],
  [u'board', u'plane', u'sit'],
  [u'house', u'father'],
  [u'minute', u'violence', u'intensity', u'scene'],
  [u'total', u'minute', u'action', u'end.<br', u'movie', u'plot'],
  [u'acting', u'character', u'movie', u'line', u'pitch'],
  [u'movie'],
  [u'acting',
   u'music',
   u'effect',
   u'make-up',
   u'directing',
   u'editing',
   u'writing'],
  [u'must-see', u'money'],
  [u'movie',
   u'boring.<br',
   u'stars.<br',
   u'rating',
   u'pg-13',
   u'sequence',
   u'rating',
   u'pg-13',
   u'sequence',
   u'scene']],
 [[u'performance', u'story', u'movie', u'expectation'],
  [u'movie', u'reviews', u'reviewer']],
 [[u'person', u'movie']],
 [[u'<br', u'critic', u'review', u'screening'],
  [u'critic', u'film', u'director', u'critic'],
  [u'review',
   u'for!<br',
   u'movie',
   u'laugh',
   u'end',
   u'moment',
   u'pause!<br',
   u'paraphrase',
   u'line',
   u'barbershop',
   u'scene',
   u'time',
   u'truth'],
  [u'performance', u'time', u'day', u'dance', u'scene'],
  [u'community', u'tolerance', u'country'],
  [u'be.<br', u'cast'],
  [u'actor', u'quality', u'writing', u'law'],
  [u'movie',
   u'fine',
   u'cast',
   u'role',
   u'role',
   u'wife',
   u'protagonist',
   u'performance'],
  [u'movie', u'self', u'contribution', u'film'],
  [u'rock', u'performance', u'man', u'mission'],
  [u'town', u'circumstance', u'heart', u'thing', u'movie', u'end', u'credit'],
  [u'treat', u'team', u'field', u'night.<br', u'note'],
  [u'teen', u'movie', u'price', u'admission', u'track']],
 [[u'job', u'film'], [u'movie', u'volunteer', u'mission']],
 [[u'story', u'time'],
  [u'kid', u'age', u'message', u'person', u'judge', u'difference'],
  [u'movie', u'junk', u'theatre', u'basis']],
 [[u'challenge', u'person', u'land', u'perfection', u'forefront'],
  [u'bigot', u'society', u'human', u'mind', u'heart', u'body', u'world'],
  [u'beauty', u'world', u'ambition', u'light', u'world'],
  [u'wish', u'individual']],
 [[u'movie', u'movie', u'year'],
  [u'performance', u'viewer', u'emotion', u'character'],
  [u'movie', u'effect', u'character', u'story', u'psyche', u'level']],
 [[u'actor', u'supporting'],
  [u'film', u'box', u'tissue', u'film', u'ice', u'water', u'veins.<br'],
  [u'setting', u'year'],
  [u'school', u'football', u'coach', u'teacher'],
  [u'fellow',
   u'possession',
   u'radio',
   u'shopping',
   u'cart',
   u'bicycle.<br',
   u'fellow',
   u'reason',
   u'film'],
  [u'nickname', u'exploration', u'soul.<br', u'movie', u'masterpiece']],
 [[u'event', u'heart', u'dramas'],
  [u'year', u'film'],
  [u'<br', u'film', u'football', u'coach'],
  [u'day',
   u'performance',
   u'men',
   u'football',
   u'field',
   u'coach',
   u'team',
   u'game'],
  [u'building'],
  [u'point', u'share', u'bond'],
  [u'life',
   u'football',
   u'priority',
   u'family',
   u'movie',
   u'deal',
   u'sort',
   u'life',
   u'problem',
   u'priority',
   u'life',
   u'person',
   u'death',
   u'family',
   u'relationship'],
  [u'movie', u'touch', u'issue', u'director', u'film'],
  [u'thing'],
  [u'performance', u'life', u'eye'],
  [u'mix', u'comedy', u'drama'],
  [u'<br', u'conclusion', u'critic', u'reviews'],
  [u'butt', u'film', u'star', u'reviews', u'school', u'rock', u'sense'],
  [u'performance'],
  [u'movie', u'year', u'reason', u'movie'],
  [u'rating']],
 [[u'movie'], [u'start', u'story', u'man', u'football', u'team.<br']],
 [[u'adventure',
   u'grandeur',
   u'magnificence',
   u'love',
   u'story',
   u'set',
   u'background',
   u'event',
   u'movie',
   u'hope',
   u'love',
   u'humanity',
   u'<br',
   u'dicaprio',
   u'screen',
   u'charisma',
   u'passion',
   u'trust',
   u'insouciance',
   u'ingenuity',
   u'wanderer',
   u'pretension',
   u'zest',
   u'life',
   u'<br',
   u'winslet',
   u'teen',
   u'guy',
   u'night',
   u'depth',
   u'despair',
   u'<br',
   u'racist',
   u'cheat',
   u'bribe',
   u'money',
   u'child',
   u'carat',
   u'diamond',
   u'worn',
   u'woman',
   u'lot',
   u'folk',
   u'ship',
   u'<br',
   u'mother',
   u'stature',
   u'daughter',
   u'snob',
   u'<br',
   u'master',
   u'shipbuilder',
   u'character',
   u'time',
   u'sense',
   u'history',
   u'<br',
   u'speed',
   u'record',
   u'spite',
   u'warning',
   u'iceberg',
   u'<br',
   u'explorer',
   u'search',
   u'diamond'],
  [u'<br',
   u'woman',
   u'love',
   u'story',
   u'nightmare',
   u'horror',
   u'shock',
   u'face',
   u'<br',
   u'photography',
   u'visual',
   u'footage',
   u'liner',
   u'ocean',
   u'floor',
   u'transformation',
   u'bow',
   u'viewer',
   u'interior',
   u'sight',
   u'date',
   u'destiny',
   u'dock',
   u'dolphin',
   u'racing',
   u'ship',
   u'ship',
   u'rail',
   u'magic',
   u'moment',
   u'intertwining',
   u'paper',
   u'camera',
   u'eye',
   u'shape',
   u'eye',
   u'<br',
   u'scene',
   u'collision',
   u'destiny',
   u'sequence',
   u'film\x97',
   u'water',
   u'help',
   u'epic',
   u'film'],
  [u'effect',
   u'film',
   u'decor',
   u'music',
   u'emotion',
   u'movie',
   u'hunting',
   u'range',
   u'feeling',
   u'<br',
   u'tribute',
   u'life',
   u'ship']],
 [[u'<br', u'thriller'],
  [u'director', u'job', u'action', u'plot'],
  [u'lot.<br',
   u'factor',
   u'closeness',
   u'victim',
   u'guy',
   u'time',
   u'victim']],
 [[u'suspense',
   u'effect',
   u'action',
   u'sophistication',
   u'cynicism',
   u'movie'],
  [u'movie'],
  [u'hero',
   u'movie',
   u'man',
   u'strength',
   u'integrity',
   u'man',
   u'way',
   u'world'],
  [u'movie', u'hogwash'],
  [u'jock', u'fun'],
  [u'man', u'integrity'],
  [u'person', u'school', u'football', u'business'],
  [u'person', u'life'],
  [u'movie', u'person', u'world'],
  [u'movie', u'nature']],
 [[u'movie', u'movie'], [u'death']],
 [[u'drama', u'movie', u'kind', u'guy', u'trailer'],
  [u'film', u'acting'],
  [u'job', u'radio'],
  [u'job'],
  [u'comedy'],
  [u'story', u'acting', u'comedy']],
 [[u'story', u'man', u'heart', u'thing'],
  [u'adversity', u'coach'],
  [u'youth', u'thing', u'intuition', u'compassion'],
  [u'school', u'teacher', u'plight', u'underdog', u'hand', u'card', u'way'],
  [u'way', u'coach'],
  [u'joke', u'life', u'boy', u'boy'],
  [u'scale', u'incident', u'friendship', u'life', u'kind', u'way', u'movie'],
  [u'movie', u'life', u'tale'],
  [u'brilliance']],
 [[u'movie', u'story', u'football', u'coach'],
  [u'actor', u'new.<br', u'man'],
  [u'day',
   u'football',
   u'ball',
   u'throw',
   u'ball',
   u'impatience',
   u'player',
   u'football',
   u'team',
   u'guy'],
  [u'day',
   u'football',
   u'player',
   u'up.<br',
   u'coach',
   u'act',
   u'team',
   u'day',
   u'nickname',
   u'passion',
   u'radio',
   u'general.<br',
   u'movie',
   u'assistant',
   u'team',
   u'train',
   u'hardship',
   u'player',
   u'respect',
   u'person',
   u'city'],
  [u'<br', u'movie', u'everybody', u'story'],
  [u'life', u'person', u'difference'],
  [u'heart', u'thing', u'life']],
 [[u'youth', u'catalyst', u'person', u'town'],
  [u'film',
   u'overlook',
   u'person',
   u'problem',
   u'patience',
   u'man',
   u'guilt',
   u'heart.<br',
   u'formula',
   u'film',
   u'story'],
  [u'movie',
   u'failure',
   u'performance',
   u'director',
   u'cast.<br',
   u'man',
   u'passion',
   u'sport',
   u'passion',
   u'man',
   u'life'],
  [u'background', u'mother', u'question', u'coach', u'intention'],
  [u'school',
   u'kid',
   u'mascot',
   u'disposition',
   u'acceptance',
   u'person',
   u'ounce',
   u'malice',
   u'body.<br',
   u'film',
   u'lot',
   u'pair',
   u'coach'],
  [u'actor', u'time', u'boring', u'grace', u'presence'],
  [u'essence', u'coach', u'possibility', u'amend', u'past'],
  [u'man.<br'],
  [u'actress', u'generation', u'work', u'mother'],
  [u'actress', u'school', u'principle', u'style'],
  [u'scene', u'film.<br', u'heart', u'person', u'society', u'judge'],
  [u'lot', u'idea', u'perspective']],
 [[u'story', u'belief', u'difference'],
  [u'screenwriter',
   u'racism',
   u'film',
   u'way',
   u'film',
   u'story',
   u'line.<br',
   u'incident',
   u'racism',
   u'attempt',
   u'realism'],
  [u'<br', u'town', u'person', u'race'],
  [u'leader', u'coach', u'father', u'caring']],
 [[u'film', u'ultra-nice'],
  [u'fact'],
  [u'based-on-a-real-life', u'story'],
  [u'character', u'reverse', u'life'],
  [u'role',
   u'characters.<br',
   u'film',
   u'bunch',
   u'meaning',
   u'kind',
   u'person'],
  [u'folk',
   u'friendship',
   u'love',
   u'compassion',
   u'school',
   u'kid',
   u'story',
   u'place'],
  [u'job', u'role'],
  [u'role', u'man', u'hour-and-a-half', u'character'],
  [u'loudness',
   u'guy',
   u'documentary',
   u'dvd',
   u'life',
   u'year',
   u'transformation',
   u'month',
   u'film']],
 [[u'validation',
   u'town',
   u'value',
   u'man',
   u'heart.<br',
   u'reviews',
   u'hostility'],
  [u'dignity', u'portrayal', u'fact', u'story', u'heartwarming'],
  [u'sport',
   u'town',
   u'school',
   u'portrayal',
   u'student',
   u'heart',
   u'me.<br',
   u'coach',
   u'daughter',
   u'decision',
   u'way']],
 [[u'fellow', u'user', u'person'],
  [u'trailer'],
  [u'movie', u'teen', u'movie', u'boy'],
  [u'ticket', u'week', u'thing'],
  [u'day', u'story', u'movie.<br', u'man'],
  [u'story', u'teenager', u'life', u'spending', u'day'],
  [u'day', u'school', u'football', u'team'],
  [u'movie', u'joy', u'lows', u'life'],
  [u'movie', u'place', u'heart'],
  [u'must-see', u'family', u'drama'],
  [u'movie']],
 [[u'movie',
   u'id',
   u'pose',
   u'assassin',
   u'killer',
   u'plan',
   u'man',
   u'family.<br',
   u'woman',
   u'woman',
   u'home',
   u'worry',
   u'death',
   u'grandmother',
   u'flight',
   u'times.<br',
   u'flight',
   u'guy',
   u'profession',
   u'plan',
   u'sp'],
  [u'death.<br',
   u'cost',
   u'life',
   u'story',
   u'movie',
   u'year',
   u'thing',
   u'attention',
   u'movie',
   u'importance',
   u'movie',
   u'pen',
   u'time',
   u'joke',
   u'quirk',
   u'thriller',
   u'fan',
   u'hint',
   u'bathroom',
   u'scene',
   u'jack',
   u'thank',
   u'attendant',
   u'flight',
   u'female',
   u'attendant']],
 [[u'film'],
  [u'performance'],
  [u'way'],
  [u'character', u'performance'],
  [u'plot', u'person', u'life', u'character'],
  [u'action', u'buff', u'slow', u'action', u'film']],
 [[u'film', u'area', u'role'], [u'coach', u'end', u'movie']],
 [[u'fact',
   u'movie',
   u'story',
   u'course',
   u'experience',
   u'viewer',
   u'theme',
   u'movie'],
  [u'story', u'twist', u'viewer', u'time'],
  [u'film', u'point', u'boring', u'performance', u'opinion'],
  [u'lasting', u'smile', u'face'],
  [u'movie.<br']],
 [[u'game.the',
   u'graphic',
   u'mission',
   u'yet,i',
   u'game',
   u'games.it',
   u'360remake',
   u'it.it',
   u'game',
   u'kind',
   u'games.so',
   u'thing',
   u'game',
   u'time',
   u'game',
   u'game']],
 [[u'bond', u'game'], [u'bond', u'movie', u'time'], [u'bond', u'game']],
 [[u'year', u'release', u'field', u'first-person', u'shooter'],
  [u'quake',
   u'series',
   u'combination',
   u'quality',
   u'enemy',
   u'intelligence',
   u'challenge',
   u'fun',
   u'game'],
  [u'mission',
   u'objective',
   u'bond',
   u'baddie',
   u'screen',
   u'camera',
   u'security',
   u'rescue',
   u'hostage',
   u'girl'],
  [u'gadget', u'game', u'watch'],
  [u'game',
   u'movie',
   u'storyline',
   u'character',
   u'scene',
   u'movie',
   u'dam',
   u'bungee-jump',
   u'prop-plane',
   u'escape',
   u'tank',
   u'chase'],
  [u'layout', u'situation', u'film'],
  [u'level', u'player', u'string', u'scene'],
  [u'difficulty', u'level', u'mission', u'objective', u'enemy', u'bullet'],
  [u'code',
   u'button',
   u'level',
   u'time',
   u'frame',
   u'character',
   u'multiplayer'],
  [u'multiplayer', u'first-person', u'shooter'],
  [u'ton', u'option', u'friend', u'reason', u'time', u'kick'],
  [u'game', u'thing', u'streak', u'game', u'first-person', u'shooter']],
 [[u'game',
   u'graphic',
   u'one-player',
   u'story-line',
   u'game',
   u'people.<br',
   u'level',
   u'option',
   u'weapon',
   u'game',
   u'year']],
 [[u'game', u'platform'],
  [u'first-person', u'shooter', u'game', u'finger', u'fun'],
  [u'game'],
  [u'movement', u'character'],
  [u'character'],
  [u'game', u'matter', u'time']],
 [[u'game'],
  [u'tomorrow', u'world', u'goldeneye', u'love', u'goldeneye', u'time'],
  [u'multus', u'player', u'game', u'graphic'],
  [u'speed', u'boat', u'jump', u'ninjas', u'jaw', u'spy', u'moonraker'],
  [u'level', u'fun', u'environment'],
  [u'place', u'person', u'statue', u'park', u'game', u'today']],
 [[u'game', u'game'],
  [u'sure', u'player'],
  [u'player', u'fun', u'thing', u'person'],
  [u'game', u'level', u'use', u'level'],
  [u'multiplayer', u'shooter']],
 [[u'woman', u'plane', u'man'],
  [u'flight', u'sit', u'man', u'room', u'politician', u'wife', u'father'],
  [u'point',
   u'character',
   u'politician',
   u'room',
   u'plan',
   u'computer',
   u'savvy',
   u'hack',
   u'hotel'],
  [u'teenager',
   u'today',
   u'computer',
   u'computer',
   u'trouble',
   u'predicament',
   u'land',
   u'movie.<br',
   u'thing',
   u'plan',
   u'thing'],
  [u'plane', u'voice', u'passenger'],
  [u'sure', u'way'],
  [u'movie', u'episode', u'complexity'],
  [u'type', u'brain', u'time', u'intelligence', u'chair', u'acting', u'movie'],
  [u'muscle'],
  [u'problem', u'movie', u'studio', u'award', u'acting', u'bit'],
  [u'movie', u'job', u'time', u'film', u'movie', u'lack', u'depth', u'script'],
  [u'improvement',
   u'movie',
   u'past',
   u'horror',
   u'movie',
   u'decade',
   u'thing',
   u'movie',
   u'movie'],
  [u'hour', u'movie', u'movie', u'movie', u'length'],
  [u'waste', u'time', u'character', u'movie', u'movie'],
  [u'film', u'music', u'geek', u'movie', u'score'],
  [u'stuff', u'music'],
  [u'techno', u'stuff', u'title'],
  [u'soundtrack',
   u'title',
   u'it.<br',
   u'cinema',
   u'entertaining',
   u'hour',
   u'half']],
 [[u'game', u'stealth', u'hand'],
  [u'gameplay',
   u'extra',
   u'bullet',
   u'hole',
   u'wall',
   u'enemy',
   u'point',
   u'bullet',
   u'ton',
   u'motion',
   u'animation',
   u'enemy',
   u'instance',
   u'window',
   u'guard',
   u'swatting',
   u'list'],
  [u'licensed', u'conversion', u'shoe', u'spy'],
  [u'game', u'reason']],
 [[u'game'],
  [u'action', u'bullet'],
  [u'graphic', u'explosion'],
  [u'fun',
   u'playing',
   u'multiplayer',
   u'mode',
   u'shooting',
   u'friend',
   u'sibling',
   u'guns?<br']],
 [[u'video', u'game'],
  [u'game',
   u'single-player',
   u'mode',
   u'job',
   u'shoe',
   u'mission',
   u'objective',
   u'weapon',
   u'level',
   u'design'],
  [u'enemy', u'artificial', u'intelligence', u'today', u'standard', u'appeal'],
  [u'method',
   u'level',
   u'time',
   u'limit',
   u'title',
   u'them!<br',
   u'game',
   u'multiplayer',
   u'mode',
   u'player',
   u'game',
   u'sequel',
   u'opponent',
   u'smithereen',
   u'barrage']],
 [[u'game', u'cartoon', u'graphic', u'violence', u'level', u'person'],
  [u'level', u'hour', u'correspondence', u'helicopter']],
 [[u'opinion', u'think', u'video', u'game'],
  [u'game'],
  [u'player',
   u'multi-player',
   u'mode',
   u'brother',
   u'friend',
   u'game',
   u'time']],
 [[u'suit', u'hand', u'measurement'],
  [u'automobile', u'engineering', u'gadget', u'horse', u'hood'],
  [u'member', u'polo', u'club', u'restaurant', u'woman', u'world'],
  [u'pocket', u'watch', u'double', u'trusty', u'pen', u'caliber', u'gun'],
  [u'snow', u'ski', u'sea', u'diving', u'sky', u'dive', u'hair', u'place'],
  [u'world', u'renown', u'spy', u'son', u'boy', u'man', u'world'],
  [u'character',
   u'movie',
   u'industry',
   u'icon',
   u'subject',
   u'film',
   u'decade'],
  [u'man', u'role', u'role', u'debut', u'setting', u'title', u'party'],
  [u'market', u'time'],
  [u'dominance',
   u'sale',
   u'chart',
   u'testament',
   u'game',
   u'review',
   u'library',
   u'it.<br',
   u'face',
   u'time',
   u'game'],
  [u'mix', u'result'],
  [u'lies', u'ammunition', u'mix'],
  [u'case', u'reservation'],
  [u'movie', u'film', u'appeal', u'bond', u'movie'],
  [u'game',
   u'story.<br',
   u'game',
   u'first-person',
   u'shooter',
   u'order',
   u'brain',
   u'brawn'],
  [u'movie', u'story', u'path', u'movie', u'variation'],
  [u'plot', u'world', u'satellite', u'process', u'woman'],
  [u'wit', u'experience', u'mission', u'world']],
 [[u'friends.i',
   u'game',
   u'great,and',
   u'it.<br',
   u'game',
   u'player',
   u'mission',
   u'place',
   u'wasteland',
   u'city.my',
   u'favorite',
   u'tank.on',
   u'player',
   u'mode,you',
   u'friend',
   u'character',
   u'wish',
   u'area',
   u'ammo',
   u'weapon',
   u'hand',
   u'gun',
   u'rifle',
   u'laser',
   u'fist',
   u'player',
   u'mode,there',
   u'lot',
   u'place',
   u'game',
   u'suspenseful.because,you',
   u'opponent',
   u'is,and',
   u'door',
   u'going.<br',
   u'game',
   u'good!go',
   u'play']],
 [[u'game'],
  [u'game'],
  [u'game', u'mold', u'shooter'],
  [u'multi-player'],
  [u'mode', u'time'],
  [u'game', u'board', u'person', u'able'],
  [u'god', u'charry', u'difficulty', u'difficulty', u'game', u'game', u'game'],
  [u'capability', u'shooting', u'game', u'death', u'match', u'style'],
  [u'game'],
  [u'story', u'mystery', u'glitch', u'easter', u'egg', u'advantage'],
  [u'<br', u'shooting', u'game', u'time']],
 [[u'movie',
   u'tie-in',
   u'game',
   u'time',
   u'first-person',
   u'shooter',
   u'gaming-console',
   u'market'],
  [u'plot',
   u'game',
   u'problem',
   u'movie',
   u'year',
   u'game',
   u'release.<br',
   u'game',
   u'technique',
   u'style',
   u'game',
   u'player',
   u'variety',
   u'objective',
   u'challenge'],
  [u'difficulty',
   u'setting',
   u'environment',
   u'entertainment',
   u'difficulty',
   u'gamer.<br',
   u'introduction',
   u'hit-point',
   u'enemy',
   u'feature'],
  [u'boss', u'game', u'shot', u'head'],
  [u'type', u'realism', u'henchman', u'alarm', u'shootout'],
  [u'way', u'game', u'possibility', u'task'],
  [u'way',
   u'way',
   u'beating',
   u'level',
   u'strategy',
   u'guide',
   u'path',
   u'fun',
   u'day',
   u'away).<br',
   u'game',
   u'value',
   u'contribution',
   u'gaming',
   u'industry'],
  [u'dust',
   u'sucker',
   u'order',
   u'copy',
   u'trust',
   u'bond',
   u'fan',
   u'gamer',
   u'game',
   u'shoe',
   u'gaming',
   u'experience.<br',
   u'sister',
   u'game',
   u'control',
   u'weapon']],
 [[u'storytelling', u'level'],
  [u'game',
   u'today',
   u'strong.<br',
   u'game',
   u'month',
   u'playing',
   u'year',
   u'time',
   u'again.<br',
   u'level',
   u'game',
   u'date'],
  [u'level', u'video', u'game', u'sequence', u'time'],
  [u'first-person',
   u'shooting',
   u'usage',
   u'gadget',
   u'fan',
   u'fan',
   u'aspect',
   u'experience',
   u'game'],
  [u'game', u'action', u'gadget'],
  [u'game'],
  [u'dialogue', u'game', u'text', u'dialogue'],
  [u'it.<br', u'feature', u'game', u'way', u'story', u'movie', u'way'],
  [u'level', u'level', u'bomb', u'movie', u'storyline'],
  [u'thing', u'game'],
  [u'game', u'bond', u'experience']],
 [[u'thriller', u'minute', u'leaf', u'evil'],
  [u'evil', u'job', u'killer'],
  [u'performance', u'wedding'],
  [u'film', u'place', u'level', u'person', u'eye'],
  [u'action', u'scale', u'sweep', u'canvas', u'limitation'],
  [u'cinematography',
   u'course',
   u'camera',
   u'confine',
   u'passenger',
   u'jet',
   u'dialog',
   u'story'],
  [u'distraction', u'subplot', u'issue', u'heart', u'battle', u'character'],
  [u'focus', u'distraction', u'plot', u'action', u'thriller']],
 [[u'game', u'mission', u'fun', u'lot', u'action', u'fun', u'weapon'],
  [u'way',
   u'look',
   u'game',
   u'brosnan',
   u'character',
   u'game',
   u'actor',
   u'movie'],
  [u'way', u'time', u'game', u'game', u'movie', u'thing', u'movie'],
  [u'game',
   u'graphic',
   u'voice',
   u'actor',
   u'game',
   u'game',
   u'fun',
   u'score']],
 [[u'goldeneye', u'n64', u'release', u'game'],
  [u'episode', u'i-racer', u'time', u'game'],
  [u'adaptation', u'movie', u'adaptation'],
  [u'story'],
  [u'movie', u'itself.<br', u'graphic'],
  [u'movement'],
  [u'enemy', u'artificial', u'intelligence', u'game'],
  [u'alarm'],
  [u'camera', u'aspect', u'gameplay.<br', u'game'],
  [u'game'],
  [u'level', u'level', u'victory'],
  [u'playmate', u'license', u'music', u'sound'],
  [u'game'],
  [u'job']],
 [[u'quite', u'game', u'date'],
  [u'curve',
   u'friend',
   u'month',
   u'multiplayer',
   u'mode',
   u'exceptional.<br',
   u'degree',
   u'skill',
   u'button',
   u'challenge',
   u'agent',
   u'level',
   u'game']],
 [[u'goldeneye', u'mind'],
  [u'doubt', u'game', u'time'],
  [u'person', u'violence'],
  [u'antic', u'there.<br', u'fun'],
  [u'arsenal',
   u'weapon',
   u'level',
   u'movie',
   u'objective',
   u'swarm',
   u'guard'],
  [u'ton', u'level', u'skill'],
  [u'goldeneye', u'multiplayer', u'game'],
  [u'character', u'movie', u'villain', u'movie', u'guard', u'game'],
  [u'goldeneye', u'stuff', u'goldeneye', u'website'],
  [u'lover', u'game', u'time']],
 [[u'storyline', u'mission', u'level', u'difficulty']],
 [[u'section', u'message', u'film'],
  [u'riot', u'start', u'section', u'character', u'story'],
  [u'lot', u'setup', u'notch', u'performance', u'dialog', u'think', u'film'],
  [u'interpretation',
   u'film',
   u'mickey',
   u'prejudice',
   u'innuendo',
   u'town',
   u'gossip',
   u'tabloid',
   u'sensationalism'],
  [u'right'],
  [u'story']],
 [[u'tale', u'school', u'teacher', u'student-turned-actor'],
  [u'rest',
   u'film',
   u'deal',
   u'absurdity',
   u'setup',
   u'effect',
   u'town',
   u'fiancee',
   u'climaxe',
   u'everybody-loves-everybody',
   u'right',
   u'activist',
   u'youth',
   u'portrayal',
   u'man',
   u'struggle',
   u'depiction',
   u'life',
   u'trouble',
   u'rent',
   u'thing',
   u'book'],
  [u'film',
   u'piousness',
   u'speech',
   u'fun',
   u'culture',
   u'town',
   u'ignorance',
   u'fondness',
   u'comedy'],
  [u'satire', u'film', u'exuberance', u'farce'],
  [u'tongue-firmly-in-cheek'],
  [u'end',
   u'joke',
   u'locker',
   u'room',
   u'scene',
   u'comedy',
   u'breath',
   u'air.<br',
   u'game',
   u'support'],
  [u'award', u'winning', u'performance'],
  [u'<br', u'fact', u'mentality', u'townsfolk', u'fun'],
  [u'fluff', u'sanctimoniousness']],
 [[u'decision', u'sense'],
  [u'storyline', u'event'],
  [u'award',
   u'actor',
   u'person',
   u'award',
   u'school',
   u'teacher',
   u'outing',
   u'person.<br',
   u'course',
   u'person',
   u'closet',
   u'day'],
  [u'outing', u'person'],
  [u'life', u'outcome', u'individual'],
  [u'willingness', u'thing', u'life', u'happiness'],
  [u'joy', u'acceptance', u'life'],
  [u'movie', u'outcome', u'lot', u'life'],
  [u'acceptance', u'community', u'else.<br', u'performance'],
  [u'quote',
   u'use',
   u'music',
   u'stereo-type',
   u'world',
   u'tongue',
   u'cheek',
   u'humour'],
  [u'watch', u'mind', u'laugh', u'head']],
 [[u'opinion', u'movie'],
  [u'wedding', u'dress', u'tuxedo'],
  [u'quote', u'everybody'],
  [u'time']],
 [[u'turn', u'comedy'],
  [u'town', u'history', u'teacher', u'year', u'student', u'nominee'],
  [u'performance', u'film', u'soldier', u'thank', u'speech'],
  [u'floor', u'clue', u'guy', u'television'],
  [u'performance)so', u'idea', u'idea', u'school'],
  [u'parent', u'son'],
  [u'visit', u'town', u'reporter', u'article'],
  [u'moment', u'selleck', u'plant', u'kiss', u'right', u'lip'],
  [u'thing', u'sexuality', u'aggravation', u'frustration', u'fianc\xe9e'],
  [u'scene',
   u'bar',
   u'wedding',
   u'gown',
   u'middle',
   u'street',
   u'lack',
   u'man',
   u'world'],
  [u'movie', u'way', u'role'],
  [u'scene',
   u'film',
   u'record',
   u'guy',
   u'record',
   u'man',
   u'dance',
   u'disco',
   u'tune',
   u'memory',
   u'narrator',
   u'record',
   u'matter',
   u'dance',
   u'groove',
   u'thing',
   u'room'],
  [u'sincerity', u'gusto'],
  [u'film', u'character', u'study', u'man'],
  [u'film']],
 [[u'reason', u'room', u'suspense', u'movie', u'way', u'ploy'],
  [u'storyline', u'time', u'plane'],
  [u'plane', u'movie']],
 [[u'movie'],
  [u'movie', u'element', u'humor', u'music', u'scene'],
  [u'comedian', u'job', u'film', u'film'],
  [u'humor', u'film', u'exaggeration', u'scene', u'bit'],
  [u'film', u'element', u'humor', u'laugh']],
 [[u'premise', u'plot', u'line', u'screenplay'],
  [u'tad', u'story', u'man'],
  [u'target-audience', u'stuff', u'context', u'story'],
  [u'<br',
   u'facet',
   u'prowess',
   u'screenwriter',
   u'consideration',
   u'part.<br',
   u'mark']],
 [[u'movie'],
  [u'dance', u'scene', u'tape', u'scene'],
  [u'scene', u'school', u'graduation', u'ceremony'],
  [u'time', u'segment'],
  [u'girl', u'friend', u'ditz', u'dial', u'phone'],
  [u'film'],
  [u'time'],
  [u'bang', u'film'],
  [u'school', u'principle']],
 [[u'role'],
  [u'acceptance',
   u'speech',
   u'school',
   u'drama',
   u'teacher',
   u'film',
   u'version'],
  [u'character', u'reaction', u'scene', u'film', u'target', u'rumor'],
  [u'bride-to-be.<br',
   u'teacher',
   u'graduation',
   u'scene',
   u'person',
   u'way',
   u'life'],
  [u'farce', u'life'],
  [u'misdirection',
   u'wedding',
   u'scene',
   u'cop',
   u'out.<br',
   u'film',
   u'course',
   u'scene',
   u'how-to-be-a-real-man',
   u'tape',
   u'tape',
   u'actions.<br',
   u'hoot']],
 [[u'concept', u'director', u'muppet'],
  [u'star', u'soldier', u'thank', u'school', u'english', u'teacher'],
  [u'medium', u'spotlight', u'man', u'marriage', u'way'],
  [u'wedding', u'day'],
  [u'course',
   u'teacher',
   u'graduation',
   u'day',
   u'support',
   u'thing',
   u'school',
   u'head'],
  [u'surprise', u'nominee', u'member', u'bit', u'comedy']],
 [[u'english', u'school', u'city'],
  [u'town'],
  [u'acceptance',
   u'speech',
   u'role',
   u'man',
   u'lesson',
   u'teacher',
   u'school'],
  [u'ceremony'],
  [u'film', u'man', u'situation'],
  [u'man-who-did-not-realize-he-was-gay', u'touching'],
  [u'rest', u'cast', u'stitch', u'fianc\xe9', u'hand', u'audience'],
  [u'costume', u'setting', u'heartland'],
  [u'script', u'direction', u'production'],
  [u'look', u'population', u'film', u'asset', u'doubt'],
  [u'laugh', u'understanding', u'situation', u'time', u'film']],
 [[u'audience',
   u'film',
   u'teacher',
   u'television',
   u'student',
   u'straight',
   u'viewer'],
  [u'audience', u'film', u'movie', u'man'],
  [u'movie',
   u'tendency',
   u'disco',
   u'music',
   u'movie',
   u'dress',
   u'orientation'],
  [u'film', u'slap', u'man', u'stereotype', u'lacking', u'taste', u'culture'],
  [u'comedy',
   u'comedy',
   u'send',
   u'message',
   u'center',
   u'film',
   u'humor',
   u'character'],
  [u'self-denial', u'sex', u'life'],
  [u'engagement', u'teacher', u'school', u'series', u'sunset', u'talk'],
  [u'film',
   u'moment',
   u'attempt',
   u'dancing',
   u'instruction',
   u'tape',
   u'behavior'],
  [u'performer', u'film', u'moment'],
  [u'student', u'actor', u'clip', u'film', u'soldier'],
  [u'movie',
   u'theme',
   u'boy-meets-boy',
   u'romance',
   u'male-to-male',
   u'kiss',
   u'smooch'],
  [u'<br', u'injustice', u'prejudice'],
  [u'teaching', u'job', u'performance', u'credential', u'outrage'],
  [u'character', u'wedding', u'self-realization', u'place', u'dismissal'],
  [u'finale', u'audience', u'film'],
  [u'movie',
   u'man',
   u'slob',
   u'fan',
   u'football',
   u'station',
   u'wagon',
   u'country',
   u'music',
   u'food'],
  [u'performance',
   u'situation',
   u'stereotype',
   u'stereotype',
   u'dustbin',
   u'history']],
 [[u'comedy'],
  [u'person', u'cast', u'distinction'],
  [u'star',
   u'film',
   u'director',
   u'sensibility',
   u'wit',
   u'farce',
   u'encounter',
   u'frog']],
 [[u'performance', u'supermodel', u'girlfriend'],
  [u'actor'],
  [u'movie', u'actress', u'century', u'ridiculousness', u'plot'],
  [u'rest', u'movie', u'level', u'energy']],
 [[u'homosexuality', u'film', u'industry', u'society', u'day', u'ideology'],
  [u'example',
   u'melodrama',
   u'actor',
   u'congressman',
   u'suicide',
   u'lifestyle'],
  [u'movie', u'actor', u'teacher', u'closet', u'wedding', u'day'],
  [u'yesteryear',
   u'suicide',
   u'today',
   u'dictate',
   u'english',
   u'teacher',
   u'maced.<br',
   u'citizenship',
   u'garb',
   u'comedy'],
  [u'scenarist', u'endorse', u'honesty', u'policy', u'honesty', u'happiness'],
  [u'school', u'teacher', u'chill', u'closet', u'ditch', u'diet'],
  [u'movie', u'society', u'gay', u'homosexual', u'honesty', u'candor'],
  [u'tabloid',
   u'reporter',
   u'actor',
   u'commentary.<br',
   u'script',
   u'life',
   u'incident',
   u'oscar',
   u'tribute',
   u'school',
   u'teacher'],
  [u'style', u'type', u'actor', u'foot', u'soldier'],
  [u'live', u'television', u'audience'],
  [u'suspicion', u'paranoia', u'horror', u'medium', u'town', u'leaf'],
  [u'school',
   u'english',
   u'teacher',
   u'deviance',
   u'spark',
   u'medium',
   u'concern'],
  [u'reporter'],
  [u'witch-hunting', u'medium'],
  [u'charge', u'everybody', u'fianc\xe9e', u'mom'],
  [u'marriage', u'slip'],
  [u'bet',
   u'marriage',
   u'moment',
   u'result',
   u'camera.<br',
   u'resort',
   u'tape',
   u'man'],
  [u'effort'],
  [u'rag', u'homosexuality'],
  [u'course', u'confession'],
  [u'school', u'job', u'award', u'somebody'],
  [u'appeal',
   u'principal',
   u'support',
   u'community.<br',
   u'defect',
   u'script'],
  [u'character', u'standard'],
  [u'teacher', u'coach'],
  [u'everybody', u'school'],
  [u'bone', u'body'],
  [u'leaf'],
  [u'friend'],
  [u'defense'],
  [u'audience'],
  [u'screen', u'credit', u'comedy', u'teeter', u'tightrope'],
  [u'recruiting', u'movie'],
  [u'filmmaker', u'lifestyle'],
  [u'premise'],
  [u'flesh', u'community', u'response'],
  [u'filmmaker',
   u'rest',
   u'movie',
   u'town',
   u'difference.<br',
   u'scene',
   u'reporter',
   u'lip',
   u'lock'],
  [u'guy', u'movie', u'identity', u'crisis'],
  [u'movie', u'piece', u'propaganda', u'message'],
  [u'tv', u'equivalent', u'tv', u'sitcom'],
  [u'issue', u'person', u'day', u'century'],
  [u'comedy', u'intolerance', u'opportunity', u'cheer', u'jeer', u'queer']],
 [[u'fear', u'flight', u'foot', u'action', u'thriller'],
  [u'flight', u'battle', u'survival', u'chilling', u'assassination', u'plot'],
  [u'minute',
   u'tick',
   u'race',
   u'time',
   u'victim',
   u'reason',
   u'movie',
   u'chemistry',
   u'star',
   u'actor'],
  [u'example',
   u'scene',
   u'airport',
   u'comedy',
   u'person',
   u'hand',
   u'film',
   u'work'],
  [u'character', u'sort', u'way', u'job'],
  [u'thrill', u'way'],
  [u'scene', u'scene'],
  [u'buildup', u'pen', u'scene'],
  [u'change', u'victim'],
  [u'weezing']],
 [[u'movie', u'time'],
  [u'character',
   u'teacher',
   u'student',
   u'character',
   u'person',
   u'town',
   u'start'],
  [u'character'],
  [u'acting', u'cast'],
  [u'movie'],
  [u'love', u'movie', u'laugh'],
  [u'movie', u'time']],
 [[u'spoiler', u'spoiler', u'set-up', u'movie'],
  [u'acting', u'attempt', u'man'],
  [u'fiance', u'parent', u'job'],
  [u'spoiler', u'acting', u'family', u'acceptance', u'attempt'],
  [u'problem', u'end', u'fact'],
  [u'movie', u'set-up', u'movie'],
  [u'mannerism'],
  [u'pigeon', u'hole'],
  [u'music'],
  [u'end', u'movie', u'right', u'movie', u'course'],
  [u'rest'],
  [u'message']],
 [[u'laugh'],
  [u'role',
   u'movie',
   u'chuckle',
   u'man',
   u'matter',
   u'scene',
   u'kiss',
   u'man',
   u'cassette',
   u'post-(almost-)wedding',
   u'scene',
   u'scene',
   u'movie.<br',
   u'scene',
   u'bit',
   u'excuse',
   u'movie']],
 [[u'cousin', u'wedding', u'scene'],
  [u'poke', u'fun', u'message', u'movie', u'climax', u'movie'],
  [u'humor', u'bit', u'timeline'],
  [u'moment', u'kiss', u'scene', u'wedding', u'scene', u'principal'],
  [u'surprise', u'fan', u'fun']],
 [[u'comedy', u'performance'],
  [u'thought'],
  [u'wedding', u'family', u'friend', u'wife'],
  [u'comedy', u'lot', u'laugh', u'giggle'],
  [u'comedy', u'performance', u'guy']],
 [[u'comedy', u'premise'],
  [u'mission',
   u'entertaining.<br',
   u'comedy',
   u'film',
   u'comedy',
   u'humor',
   u'veteran',
   u'turn'],
  [u'form', u'film', u'expected', u'square', u'man', u'type'],
  [u'humor', u'sense', u'timing'],
  [u'cast',
   u'film',
   u'successful.<br',
   u'film',
   u'theme',
   u'sort',
   u'agenda',
   u'point',
   u'fact',
   u'film',
   u'film',
   u'viewer',
   u'think',
   u'byproduct',
   u'work',
   u'cast',
   u'professional'],
  [u'tongue-in-cheek', u'moment']],
 [[u'student',
   u'film',
   u'soldier',
   u'thank',
   u'acceptance',
   u'speech',
   u'outing'],
  [u'film', u'aftermath', u'reporter', u'village', u'love', u'movie'],
  [u'moment', u'grin', u'face'],
  [u'film']],
 [[u'movie',
   u'laugh',
   u'department.<br',
   u'high-school',
   u'teacher',
   u'teacher',
   u'day',
   u'town',
   u'nomination',
   u'resident'],
  [u'soldier', u'thank', u'teacher', u'inspiration'],
  [u'set', u'mishap', u'fashion.<br', u'stereotype'],
  [u'mother'],
  [u'hoot', u'principal.<br', u'screenwriter', u'balance'],
  [u'stereotype', u'way', u'midwesterner', u'audience'],
  [u'inoffensive', u'step', u'year']],
 [[u'movie', u'film'],
  [u'theatre'],
  [u'problem', u'pace'],
  [u'majority', u'movie', u'kind'],
  [u'relationship', u'character'],
  [u'plot', u'line'],
  [u'movie', u'it.<br', u'conclusion', u'good', u'character', u'plot']],
 [[u'theme', u'gangster', u'film', u'genre', u'rise', u'fall'],
  [u'rise',
   u'individual',
   u'obscurity',
   u'height',
   u'grace',
   u'excesses.<br',
   u'feature',
   u'writer',
   u'start'],
  [u'element',
   u'director',
   u'influence',
   u'film',
   u'originality',
   u'plot',
   u'development.<br',
   u'development',
   u'movie',
   u'feature'],
  [u'performance'],
  [u'porn',
   u'veteran',
   u'film',
   u'comedy',
   u'tragedy',
   u'result',
   u'film',
   u'matter',
   u'conservatism']],
 [[u'film', u'creator'],
  [u'story', u'hotel', u'worker'],
  [u'grandmother', u'eye', u'flight'],
  [u'plane'],
  [u'movie', u'person', u'thrilling', u'film', u'pant'],
  [u'example', u'bone', u'production'],
  [u'actor', u'girl', u'film'],
  [u'actor', u'bone', u'acting', u'character', u'film', u'face', u'eye'],
  [u'job', u'film']],
 [[u'actor', u'character', u'lead', u'actor', u'film'],
  [u'performance', u'director'],
  [u'film', u'accuracy', u'disco', u'scene', u'film', u'scene'],
  [u'moviegoer', u'film', u'doubt', u'film'],
  [u'opening', u'tracking', u'shot', u'film'],
  [u'editing'],
  [u'editing', u'nomination', u'hunting', u'film'],
  [u'scene', u'film', u'firecracker'],
  [u'butterfly', u'stomach', u'scene'],
  [u'film', u'time', u'reaction', u'scene'],
  [u'impact', u'tv', u'theater', u'sound'],
  [u'shame', u'person', u'movie', u'theatrical', u'run', u'way'],
  [u'use', u'widescreen', u'tv', u'tape'],
  [u'film'],
  [u'music',
   u'set',
   u'costume',
   u'photography',
   u'character',
   u'sex',
   u'violence',
   u'happiness',
   u'heartbreak',
   u'guy',
   u'love',
   u'filmmaking']],
 [[u'film'],
  [u'poet', u'poet'],
  [u'genius', u'touch'],
  [u'me).<br', u'reason', u'night', u'person', u'standard']],
 [[u'actor', u'dialog', u'drama', u'comedy', u'writing', u'directing'],
  [u'entertaining', u'stimulating'],
  [u'role', u'job'],
  [u'performance'],
  [u'element', u'film']],
 [[u'companion', u'piece', u'documentary'],
  [u'praise',
   u'star',
   u'mother',
   u'man',
   u'identity',
   u'pornstar',
   u'getup',
   u'wife',
   u'slut'],
  [u'year',
   u'eve',
   u'bash',
   u'chance',
   u'life',
   u'donut',
   u'shop',
   u'robbery',
   u'scene',
   u'movie',
   u'shot'],
  [u'movie', u'power', u'form'],
  [u'character', u'spiral', u'rebound', u'return', u'life']],
 [[u'instinct',
   u'pornographer',
   u'person',
   u'depth',
   u'anderson',
   u'character'],
  [u'soundtrack'],
  [u'song', u'scene', u'movie', u'again.<br', u'price', u'admission']],
 [[u'stroke', u'genius', u'writer', u'movie']],
 [[u'masterpiece', u'story', u'flair', u'direction', u'director'],
  [u'film', u'cast', u'performance'],
  [u'matter', u'care', u'person'],
  [u'movie', u'impact']],
 [[u'matter', u'prude', u'mature', u'script'],
  [u'evidence', u'epic', u'masterpiece'],
  [u'director', u'movie-star'],
  [u'movie', u'time']],
 [[u'potential', u'film'],
  [u'film'],
  [u'picture', u'film', u'award', u'good', u'hunting'],
  [u'picture',
   u'category',
   u'movie',
   u'categories.<br',
   u'film',
   u'story',
   u'performance',
   u'year',
   u'barman',
   u'attention',
   u'redeeming',
   u'acting',
   u'director',
   u'porn',
   u'film'],
  [u'gift', u'world', u'porn', u'movie'],
  [u'change', u'success'],
  [u'character',
   u'parallel',
   u'story',
   u'actress',
   u'roller',
   u'shoes.<br',
   u'film',
   u'hand'],
  [u'film',
   u'execution',
   u'screenplay',
   u'soundtrack',
   u'character',
   u'importance',
   u'context'],
  [u'feeling',
   u'weakness',
   u'fear',
   u'emotion',
   u'masterpiece',
   u'cinema.<br',
   u'picture',
   u'cinema'],
  [u'plot', u'impression', u'story', u'high', u'thing', u'life'],
  [u'portrait', u'end', u'age', u'high'],
  [u'film', u'masterpiece']],
 [[u'performance', u'cast', u'job'],
  [u'film', u'porn', u'industry', u'hand', u'premise'],
  [u'hand',
   u'scene',
   u'drug',
   u'use',
   u'character',
   u'lifestyle',
   u'overkill',
   u'department'],
  [u'deal', u'film', u'work'],
  [u'family'],
  [u'soundtrack', u'feel', u'period', u'time', u'disco', u'rage'],
  [u'disco',
   u'favorite',
   u'song',
   u'well.<br',
   u'story',
   u'man',
   u'porn',
   u'industry'],
  [u'change', u'film', u'star'],
  [u'director', u'film', u'work', u'pornography', u'drug', u'road'],
  [u'focus', u'character', u'subplot', u'character', u'trial', u'life']],
 [[u'thriller', u'night'],
  [u'acting', u'villain', u'action.<br', u'movie', u'movie', u'plane'],
  [u'dialog.<br', u'pg-13', u'movie', u'ground', u'director'],
  [u'violence', u'thriller.<br', u'movie', u'point', u'cast'],
  [u'film', u'actor', u'dialog', u'thrill'],
  [u'day'],
  [u'cast', u'film'],
  [u'movie']],
 [[u'drama', u'fact', u'style', u'story', u'entertaining', u'time'],
  [u'effect', u'life', u'folk', u'consequence', u'action']],
 [[u'time', u'movie'],
  [u'shock', u'movie', u'heart'],
  [u'story', u'actor', u'humor'],
  [u'thing',
   u'god.)<br',
   u'viewing',
   u'commentary',
   u'guy',
   u'movie',
   u'movie'],
  [u'film',
   u'ripoff',
   u's.<br',
   u'recomend',
   u'film',
   u'anybody',
   u'content',
   u'film(porn.)<br']],
 [[u'video',
   u'porn',
   u'film',
   u'industry',
   u'film',
   u'consequence',
   u'genre',
   u'sex',
   u'tape'],
  [u'porn', u'industry', u'character', u'way'],
  [u'director',
   u'dream',
   u'film',
   u'viewer',
   u'suspense',
   u'story',
   u'time',
   u'beauty\x85',
   u'cock',
   u'tit'],
  [u'star', u'film'],
  [u'story',
   u'porn',
   u'industry',
   u'begins.<br',
   u'film',
   u'sequence',
   u'night',
   u'club',
   u'person',
   u'life',
   u'porn',
   u'industry',
   u'routine'],
  [u'porn', u'industry', u'party', u'story', u'story'],
  [u'success',
   u'star',
   u'lot',
   u'prize',
   u'dream',
   u'series',
   u'film',
   u'character'],
  [u'sort', u'exploitation', u'film', u'success', u'film'],
  [u'end', u'ex', u'pal'],
  [u'excess',
   u'person',
   u'dysfunction',
   u'porn',
   u'star',
   u'film',
   u'life',
   u'total',
   u'success',
   u'everybody',
   u'time',
   u'problem',
   u'society',
   u'look',
   u'industry',
   u'period',
   u'excess'],
  [u'decadence',
   u'music',
   u'industry',
   u'sequence',
   u'way',
   u'thing',
   u'friend'],
  [u'experience', u'pal', u'solution', u'character', u'sort', u'summary'],
  [u'cast', u'performance'],
  [u'performance',
   u'character',
   u'character',
   u'moments.<br',
   u'style',
   u'view',
   u'porn',
   u'industry',
   u'magnolium',
   u'favourite',
   u'favourite',
   u'film',
   u'film',
   u'goodfella',
   u'casino']],
 [[u'picture', u'nominee', u'viewing'],
  [u'director',
   u'influence',
   u'chance',
   u'film',
   u'list',
   u'himself.<br',
   u'note',
   u'memory',
   u'movie',
   u'character'],
  [u'performance', u'year', u'category']],
 [[u'sex', u'film', u'year'],
  [u'splash', u'credit'],
  [u'film', u'movie', u'merit'],
  [u'representation',
   u'pursuit',
   u'loss',
   u'thing',
   u'box',
   u'confessional',
   u'year',
   u'tale'],
  [u'kid', u'life'],
  [u'room', u'americana'],
  [u'dream', u'potential', u'gift'],
  [u'gent', u'attention', u'eyebrow', u'adult', u'film', u'industry'],
  [u'film', u'talent', u'movie.<br', u'deep-throat', u'member', u'public'],
  [u'fortune', u'acquaintance', u'bevy', u'porn', u'celebs'],
  [u'friend', u'co-worker', u'family', u'picnic'],
  [u'way'],
  [u'backslide'],
  [u'<br', u'epic'],
  [u'frame',
   u'picture',
   u'character',
   u'dialogue',
   u'live',
   u'fade',
   u'soundtrack']],
 [[u'town', u'kid', u'working', u'city', u'star', u'spiral', u'control'],
  [u'rise', u'fame', u'fall', u'fame', u'rise'],
  [u'cast', u'actor', u'director', u'movie'],
  [u'director'],
  [u'moment', u'movie', u'moment', u'movie'],
  [u'scene'],
  [u'story', u'movie'],
  [u'perfection'],
  [u'scene', u'movie', u'music', u'acting', u'cinematography'],
  [u'thank', u'god', u'fan', u'watch', u'movie']],
 [[u'doubt', u'film'],
  [u'rush', u'romance', u'epic'],
  [u'fact', u'nomination'],
  [u'filmmaker', u'year', u'film', u'pulp', u'fiction'],
  [u'film'],
  [u'pulp']],
 [[u'protagonist',
   u'metaphor',
   u'celebrity',
   u'decade',
   u'past',
   u'rise',
   u'pornography',
   u'abundance',
   u'youth'],
  [u'lead',
   u'character',
   u'trait',
   u'assortment',
   u'actor',
   u'affair',
   u'celebrity',
   u'press'],
  [u'sort', u'tale'],
  [u'dream', u'asset', u'body'],
  [u'californian', u'star'],
  [u'talent', u'individual', u'planet', u'gift'],
  [u'mother', u'home', u'adult', u'film', u'director'],
  [u'porn', u'star', u'actor', u'film'],
  [u'success', u'alias', u'porn', u'star', u'life', u'story'],
  [u'movie',
   u'pornography',
   u'target',
   u'audience',
   u'cinema-goers.<br',
   u'film',
   u'place',
   u'era',
   u'pornography',
   u'filmmaker',
   u'point',
   u'feature',
   u'story',
   u'atmosphere'],
  [u'way',
   u'film',
   u'director',
   u'implement',
   u'approach',
   u'project',
   u'movie',
   u'period',
   u'history',
   u'smut'],
  [u'style', u'reliving', u'era'],
  [u'moment', u'time', u'dealt', u'film.<br', u'set'],
  [u'time', u'role'],
  [u'film', u'role', u'career'],
  [u'title', u'film'],
  [u'battle',
   u'title',
   u'time',
   u'word',
   u'boogie',
   u'night',
   u'movie',
   u'mouth',
   u'character.<br',
   u'casting',
   u'film',
   u'aspect'],
  [u'regular', u'cast', u'first-timer'],
  [u'star'],
  [u'movie', u'border', u'role'],
  [u'career', u'pursuit', u'trait', u'character'],
  [u'role', u'audience', u'control', u'scene'],
  [u'star', u'backdrop', u'sign', u'thing', u'symbolism'],
  [u'scene', u'minute', u'tracking', u'shot', u'night', u'club', u'character'],
  [u'style', u'vein', u'shot'],
  [u'reference',
   u'shot',
   u'closing',
   u'mirror',
   u'speech',
   u'tracking',
   u'nightclub',
   u'scene',
   u'goodfella'],
  [u'director', u'story', u'direction', u'age'],
  [u'feature', u'film', u'effort', u'love', u'account'],
  [u'film', u'extreme'],
  [u'content', u'verge', u'pornography', u'trash'],
  [u'masterpiece'],
  [u'film', u'project', u'decade']],
 [[u'pornography'],
  [u'film', u'story', u'kingpin', u'busboy', u'nightclub'],
  [u'customer', u'pornographer', u'starlet'],
  [u'gifted.<br', u'film', u'pseudonym'],
  [u'porno', u'star', u'pun'],
  [u'bit', u'violence'],
  [u'kind',
   u'approach',
   u'degradation',
   u'pornography',
   u'medium',
   u'pornos.<br',
   u'lot',
   u'character'],
  [u'role', u'working', u'film', u'wife', u'sex', u'everybody'],
  [u'role', u'salesman'],
  [u'performance']],
 [[u'approach'],
  [u'pornography', u'aspect', u'person', u'motion', u'picture'],
  [u'sceptic', u'time', u'time'],
  [u'magnolia', u'reason', u'film', u'faith', u'industry', u'today'],
  [u'consumer'],
  [u'artist',
   u'today',
   u'struggle',
   u'recognition',
   u'film',
   u'mainstream',
   u'person',
   u'celebrity',
   u'stuff',
   u'sell-out',
   u'spears.<br',
   u'today',
   u'number',
   u'sale',
   u'revenue',
   u'sale',
   u'return',
   u'magic',
   u'magic',
   u'language',
   u'cinema',
   u'magic']],
 [[u'hotel', u'receptionist', u'eye', u'flight'],
  [u'plane', u'board', u'plane', u'coincidence'],
  [u'phone',
   u'hotel',
   u'father',
   u'<br',
   u'horror',
   u'film',
   u'serpent',
   u'person',
   u'trilogy',
   u'teen',
   u'thriller',
   u'departure',
   u'sort',
   u'film'],
  [u'script',
   u'thriller',
   u'minute',
   u'length',
   u'point',
   u'sort',
   u'film',
   u'taught',
   u'plot',
   u'direction',
   u'lot',
   u'subplot'],
  [u'plot', u'film', u'moment', u'term', u'hell', u'film'],
  [u'character',
   u'play',
   u'serial',
   u'killer',
   u'villain',
   u'cold',
   u'job',
   u'type',
   u'mentality'],
  [u'point', u'film', u'fashion'],
  [u'films.<br',
   u'taught',
   u'thriller',
   u'cast',
   u'action',
   u'gripping',
   u'plot'],
  [u'action',
   u'tension',
   u'film',
   u'hostage',
   u'plane',
   u'film',
   u'father',
   u'house',
   u'bit'],
  [u'mention'],
  [u'hand',
   u'villain',
   u'live',
   u'change',
   u'expectation',
   u'budget',
   u'film',
   u'production',
   u'value'],
  [u'film', u'husband', u'wife', u'lead', u'maker', u'lead'],
  [u'eye', u'candy', u'total', u'babe', u'film'],
  [u'performance', u'too.<br', u'tension', u'thriller'],
  [u'recommendation', u'stuff']],
 [[u'porn', u'person', u'film'],
  [u'film',
   u'porn',
   u'industry',
   u'half',
   u'character',
   u'development',
   u'situation',
   u'character'],
  [u'actor', u'role'],
  [u'sex', u'scene', u'course', u'character', u'hype', u'porn', u'film'],
  [u'film']],
 [[u'brilliance', u'story', u'message', u'viewer', u'audience'],
  [u'story',
   u'deal',
   u'self',
   u'realization',
   u'determination',
   u'scale',
   u'camera',
   u'angle'],
  [u'scene', u'process', u'character', u'development']],
 [[u'film'],
  [u'matter'],
  [u'aclaim',
   u'film',
   u'viewer',
   u'critic',
   u'film',
   u'making.<br',
   u'direction',
   u'film',
   u'surpass',
   u'level',
   u'brilliance.there',
   u'scene',
   u'movie'],
  [u'character', u'touch'],
  [u'direction',
   u'lot',
   u'films.<br',
   u'film',
   u'individual',
   u'story',
   u'many.it',
   u'character',
   u'study',
   u'person',
   u'layer',
   u'industry',
   u'dream'],
  [u'story', u'beginning', u'film', u'believe', u'hour', u'notice'],
  [u'kind', u'movie', u'rating'],
  [u'character', u'study', u'use', u'music', u'film'],
  [u'year',
   u'movie',
   u'music',
   u'story',
   u'movie.there',
   u'flawlessness',
   u'reynold',
   u'performance',
   u'person'],
  [u'person',
   u'role',
   u'scene',
   u'end.<br',
   u'reviewer',
   u'movie',
   u'everybody']],
 [[u'soul', u'matter', u'smile', u'respect'],
  [u'character',
   u'development',
   u'performance',
   u'stage',
   u'improvisation',
   u'cinema',
   u'verite',
   u'style.<br',
   u'plot',
   u'theme',
   u'grade',
   u'crisis',
   u'perspective.<br',
   u'sociologist',
   u'dream',
   u'case',
   u'study',
   u'film',
   u'truth',
   u'self-esteem',
   u'love',
   u'lack',
   u'deficit',
   u'manifestation',
   u'adulthood',
   u'need'],
  [u'issue',
   u'untouchable',
   u'milieu',
   u'course',
   u'film',
   u'number',
   u'level'],
  [u'loop',
   u'milieu',
   u'voyeur',
   u'film',
   u'<br',
   u'matter',
   u'character',
   u'rarity']],
 [[u'point', u'washed-up', u'performance', u'film'],
  [u'actor', u'love', u'person', u'adult', u'industry', u'aspect', u'film'],
  [u'story', u'character', u'battle'],
  [u'film', u'person']],
 [[u'review', u'testament', u'money', u'accomplishment'],
  [u'band', u'imbd', u'member'],
  [u'script', u'direction'],
  [u'movie', u'crown']],
 [[u'porn', u'industry', u'year', u'sex', u'drug', u'disco'],
  [u'chance',
   u'meeting',
   u'pornography',
   u'director',
   u'career',
   u'adult',
   u'actor',
   u'time'],
  [u'character', u'porn', u'actor'],
  [u'success.<br',
   u'theme',
   u'film',
   u'genre',
   u'pornography',
   u'drug',
   u'sex',
   u'betrayal',
   u'violence',
   u'music'],
  [u'sex',
   u'scene',
   u'place',
   u'screen.<br',
   u'film',
   u'cocaine',
   u'film',
   u'setting',
   u'popularity',
   u'drug',
   u'time',
   u'film'],
  [u'example', u'party', u'girl', u'blood', u'nose', u'fit'],
  [u'film',
   u'scene',
   u'point',
   u'darkness',
   u'music',
   u'scene',
   u'disco',
   u'scene',
   u'singing',
   u'music',
   u'career'],
  [u'soundtrack', u'tune', u'emotion', u'boy', u'sound', u'experience'],
  [u'standout',
   u'scene',
   u'film',
   u'music',
   u'drug',
   u'dealer',
   u'house',
   u'order',
   u'cash',
   u'drug',
   u'sister',
   u'background',
   u'intensity',
   u'scene',
   u'music',
   u'depth',
   u'scene'],
  [u'kind',
   u'scene',
   u'film',
   u'standout',
   u'performance',
   u'film',
   u'director'],
  [u'scene',
   u'attack',
   u'guy',
   u'movie',
   u'shock',
   u'audience',
   u'point',
   u'content'],
  [u'performance', u'performance', u'career.<br', u'film', u'theme', u'way'],
  [u'approach', u'character', u'time'],
  [u'thing', u'sign', u'character', u'situation', u'film'],
  [u'level',
   u'entertainment',
   u'film',
   u'offers.<br',
   u'box-office',
   u'success',
   u'cinema'],
  [u'quality', u'popularity', u'film'],
  [u'film',
   u'parable',
   u'situation',
   u'end',
   u'film',
   u'morality',
   u'tale',
   u'mind',
   u'day']],
 [[u'example', u'filmmaker'],
  [u'sure',
   u'load',
   u'quality',
   u'time',
   u'clasic',
   u'suit',
   u'generation',
   u'study',
   u'half-heartedly.<br',
   u'film',
   u'story',
   u'docudrama',
   u'porn',
   u'industry-and',
   u'industry'],
  [u'half', u'brillant', u'filmmaker', u'polyester', u'rubber'],
  [u'face', u'kind', u'cinema', u'film', u'great', u'stroke', u'genius'],
  [u'story', u'character', u'hate', u'impact'],
  [u'actor'],
  [u'performance',
   u'balance',
   u'timing',
   u'character',
   u'emotion',
   u'sucker',
   u'line',
   u'movie'],
  [u'look',
   u'film',
   u'colour',
   u'style',
   u'term',
   u'perfection',
   u'craft',
   u'look',
   u'edge',
   u'shot',
   u'year',
   u'party',
   u'sequence.<br',
   u'music',
   u'film',
   u'character'],
  [u'time',
   u'sorrow',
   u'grief',
   u'fun',
   u'dancing',
   u'time',
   u'spirit',
   u'performances.<br',
   u'character',
   u'porn',
   u'director',
   u'burden',
   u'future',
   u'film',
   u'genre'],
  [u'transition', u'film', u'tape'],
  [u'blend', u'innocense', u'bravado', u'character'],
  [u'individual',
   u'attention',
   u'performance',
   u'film',
   u'rent',
   u'boogie',
   u'night',
   u'difference',
   u'script',
   u'mother',
   u'torment',
   u'anguish',
   u'life',
   u'art'],
  [u'eye-candy', u'scene'],
  [u'character',
   u'life',
   u'actor',
   u'picture',
   u'part.<br',
   u'film',
   u'look',
   u'lifestyle',
   u'fast-pace',
   u'excuse',
   u'audience',
   u'trip'],
  [u'movie', u'example', u'film', u'director', u'vision', u'art', u'film']],
 [[u'movie',
   u'doubt',
   u're-make',
   u'lot',
   u'person',
   u'fan',
   u're-make',
   u'tonight',
   u'child',
   u'mean',
   u'movie',
   u'child',
   u'half',
   u'chance',
   u'movie',
   u'babysitter',
   u'sound',
   u'run',
   u'bush',
   u'mind',
   u'thing',
   u'movie',
   u'suspense',
   u'away',
   u'person',
   u'crap',
   u'movie',
   u'teenager',
   u'thing',
   u'movie',
   u'adult',
   u'age']],
 [[u'trailer', u'movie'],
  [u'film', u'success', u'environment', u'house'],
  [u'thing', u'sensor', u'light', u'feeling'],
  [u'shadow', u'feeling', u'house', u'matter', u'horror', u'film', u'film'],
  [u'acting'],
  [u'character', u'teen', u'dramas'],
  [u'end', u'film', u'film']],
 [[u'relief', u'thriller'],
  [u'girl',
   u'wedding',
   u'crasher',
   u'notebook',
   u'screen',
   u'time',
   u'suspense',
   u'thriller',
   u'horror',
   u'film',
   u'director',
   u'scream',
   u'movie'],
  [u'yuppie-type', u'audience', u'evil'],
  [u'plane', u'sequence', u'minute', u'onboard'],
  [u'plot', u'device', u'pent', u'frustration', u'bit'],
  [u'scene',
   u'hotel',
   u'guest',
   u'airline',
   u'passenger',
   u'injury',
   u'hotel'],
  [u'strength', u'film', u'character', u'development', u'game', u'lead'],
  [u'screen', u'suspense', u'thriller', u'finale']],
 [[u'house', u'babysitter', u'phone'],
  [u'fear', u'factor'],
  [u'cell', u'phone', u'task', u'child'],
  [u'house', u'wood', u'glass', u'masterpiece'],
  [u'babysitter',
   u'mode',
   u'survival',
   u'fear',
   u'stranger',
   u'end',
   u'phone.<br'],
  [u'voice', u'stranger', u'phone', u'stranger'],
  [u'kudo', u'music']],
 [[u'person',
   u'film',
   u'teen',
   u'horror',
   u'movie',
   u'horror',
   u'movie',
   u'girl'],
  [u'film', u'scream', u'audience', u'film', u'film'],
  [u'thing', u'bit', u'storyline'],
  [u'acting', u'scenery', u'storyline', u'month']],
 [[u'house', u'choice'],
  [u'reviews', u'movie', u'memory', u'teen'],
  [u'movie',
   u'story',
   u'today',
   u'teen',
   u'babysitter',
   u'trouble',
   u'cell',
   u'phone',
   u'minute',
   u'job'],
  [u'story', u'line'],
  [u'babysitter', u'house', u'crack'],
  [u'killer', u'girl'],
  [u'situation']],
 [[u'mile', u'scene', u'grizzly', u'murder', u'town', u'night'],
  [u'child', u'home', u'door', u'alarm'],
  [u'series', u'phone', u'stranger', u'child', u'panic'],
  [u'polouse', u'job', u'16-year-old', u'nightmare'],
  [u'star', u'face'],
  [u'day', u'idea', u'hell', u'house'],
  [u'size', u'house'],
  [u'movie', u'house'],
  [u'house',
   u'movie',
   u'house',
   u'size.<br',
   u'face',
   u'smile',
   u'movie',
   u'lead',
   u'actress',
   u'experience'],
  [u'girl', u'role', u'movie', u'it.<br', u'movie'],
  [u'tog'],
  [u'movie.<br', u'movie']],
 [[u'movie'],
  [u'fear'],
  [u'time', u'movie', u'bedroom'],
  [u'trick', u'bag'],
  [u'nut'],
  [u'alarm'],
  [u'thing', u'babysitting', u'past']],
 [[u'pg-13', u'thriller', u'babysitter', u'prank', u'mansion', u'film'],
  [u'element',
   u'suspense',
   u'eye',
   u'candy',
   u'character',
   u'film',
   u'summer'],
  [u'performance',
   u'flick',
   u'skip',
   u'movie',
   u'film',
   u'lifetime',
   u'lifetime',
   u'somethin']],
 [[u'prank'],
  [u'girl', u'movie.<br', u'atmosphere', u'sound'],
  [u'role'],
  [u'potential', u'actress'],
  [u'thriller', u'idea'],
  [u'thriller', u'title']],
 [[u'movie'],
  [u'television', u'trailer'],
  [u'trailer', u'film'],
  [u'day', u'movie', u'film'],
  [u'lot', u'treatment', u'movie', u'negativity'],
  [u'actress',
   u'job',
   u'movie',
   u'hater',
   u'movie',
   u'fun',
   u'teeny',
   u'bopper',
   u'popcorn',
   u'flick'],
  [u'lot', u'lot', u'slasher']],
 [[u'review', u'movie', u'friend', u'love'],
  [u'house', u'garage'],
  [u'acting'],
  [u'story'],
  [u'runner', u'track', u'team'],
  [u'lol.<br', u'movie'],
  [u'masterpiece'],
  [u'trust', u'movie'],
  [u'movie', u'critic']],
 [[u'teenager', u'fun', u'lot', u'thing', u'beginning'],
  [u'line', u'school'],
  [u'scene', u'sign', u'episode'],
  [u'story', u'cast', u'time', u'movie'],
  [u'monster',
   u'white',
   u'corner',
   u'doll',
   u'thing',
   u'movie',
   u'scarier',
   u'thing'],
  [u'movie', u'time', u'life', u'idea', u'murderer', u'house'],
  [u'flaw', u'movie', u'movie'],
  [u'horror',
   u'movie',
   u'key',
   u'car',
   u'start',
   u'shadow',
   u'corner',
   u'corner',
   u'stair',
   u'suspense',
   u'body',
   u'scene',
   u'dream',
   u'scene'],
  [u'seeing.<br', u'way', u'review', u'thing', u'spoiler']],
 [[u'flaw', u'movie', u'thing', u'movie'],
  [u'movie'],
  [u'time', u'time', u'feeling']],
 [[u'kind',
   u'movie',
   u'kind',
   u'director',
   u'branding',
   u'indication',
   u'film-goer',
   u'fact',
   u'undemanding',
   u'package',
   u'minute',
   u'charm',
   u'indication',
   u'craft',
   u'box',
   u'office',
   u'fare'],
  [u'fact',
   u'kind',
   u'movie',
   u'entertainment',
   u'challenge',
   u'viewer.<br',
   u'feeling',
   u'plot',
   u'terrorist',
   u'subplot',
   u'motivation',
   u'character',
   u'section',
   u'tv',
   u'movie',
   u'feel'],
  [u'element',
   u'suspense',
   u'echo',
   u'phone',
   u'idea',
   u'crisis',
   u'public.<br',
   u'film',
   u'person',
   u'airline',
   u'seat',
   u'character',
   u'script'],
  [u'reason', u'film'],
  [u'dialogue',
   u'sort',
   u'rib',
   u'type',
   u'dimension',
   u'battle',
   u'male',
   u'logic',
   u"sensitivity'.<br",
   u'portion',
   u'film',
   u'scream',
   u'style',
   u'man-chases-girl-with-knife'],
  [u'revelation',
   u"'s",
   u'treatment',
   u'appearance',
   u'film',
   u'trooper',
   u'version',
   u'haul',
   u'fun']],
 [[u'half', u'movie'],
  [u'scene', u'alarm', u'story'],
  [u'house', u'area', u'setting', u'type', u'movie', u'quality'],
  [u'arrangement',
   u'entry',
   u'way',
   u'house',
   u'outside',
   u'section',
   u'phone'],
  [u'time',
   u'noise',
   u'house',
   u'poker',
   u'touch',
   u'plot',
   u'hole',
   u'movie',
   u'hole',
   u'mystery'],
  [u'attention', u'taste', u'mouth'],
  [u'minute',
   u'friend',
   u'situation',
   u'taste',
   u'personality',
   u'example',
   u'scene',
   u'debate',
   u'kid',
   u'scene']],
 [[u'horror', u'fan'],
  [u'horror', u'remake', u'attempts.<br', u'sister'],
  [u'moment', u'tension', u'role', u'actress', u'attention'],
  [u'<br', u'film']],
 [[u'horror', u'movie', u'buff', u'similarity', u'movie', u'genre', u'movie'],
  [u'story', u'line', u'moment', u'role', u'anyway<br', u'rating', u'movie'],
  [u'lot', u'movie', u'working', u'video', u'store', u'person'],
  [u'cop',
   u'girl',
   u'bathroom',
   u'sleep',
   u'tequila',
   u'child',
   u'reaction',
   u'hope',
   u'<br',
   u'person']],
 [[u'remake.<br', u'job'],
  [u'fact', u'horror', u'flick', u'year', u'vulgarity', u'film'],
  [u'time', u'fingernail', u'film', u'price', u'ticket'],
  [u'girl', u'world', u'determine'],
  [u'<br'],
  [u'house', u'kid', u'movie'],
  [u'blood', u'fun']],
 [[u'shoot', u'blood', u'horror', u'movie', u'way', u'hill', u'eye', u'place'],
  [u'time'],
  [u'root'],
  [u'thumb', u'folk'],
  [u'film'],
  [u'mind', u'glitz', u'shock', u'value', u'day', u'horror', u'movie']],
 [[u'critic', u'audience', u'movie'],
  [u'thing', u'taste', u'movie', u'year'],
  [u'criticism', u'movie', u'character', u'development', u'story'],
  [u'man', u'folk', u'movie', u'babysitter'],
  [u'babysitter', u'flick', u'night', u'light', u'dude', u'mofo'],
  [u'stuff', u'willies.<br', u'fun', u'minority']],
 [[u'enemies',
   u'kind',
   u'throw-back',
   u'gangster',
   u'biography',
   u'dog',
   u'roaring'],
  [u'film', u'deal', u'energy'],
  [u'moment']],
 [[u'flick'],
  [u'hour', u'end', u'movie', u'scene', u'half', u'stick', u'vampire']],
 [[u'movie',
   u'lot',
   u'storyline',
   u'saga',
   u'misadventure',
   u'boy',
   u'beauty',
   u'enemy'],
  [u'security', u'guard', u'thug(and', u'prostitute', u'gang'],
  [u'thug',
   u'gang',
   u'exploit',
   u'boy',
   u'trouble',
   u'way',
   u'movie',
   u'movie'],
  [u'beginning',
   u'tommy',
   u'gun',
   u'outlaw',
   u'disadvantage',
   u'shootout',
   u'gang',
   u'era',
   u'movie',
   u'era',
   u'way',
   u'train']],
 [[u'movie', u'plot', u'shoot', u'scene', u'character', u'rider'],
  [u'hate', u'direction'],
  [u'story', u'fact'],
  [u'enjoy', u'movie', u'gangster', u'movie']],
 [[u'screening', u'fun', u'movie', u'time'],
  [u'end', u'summer', u'thriller', u'craving'],
  [u'<br', u'actor', u'action', u'fun'],
  [u'<br', u'thrills,action', u'plot', u'summer']],
 [[u'sure', u'movie', u'heck', u'folk'],
  [u'rating', u'disc', u'player'],
  [u'commentator',
   u'enemy',
   u'movie',
   u'per-se',
   u'version',
   u'imdb',
   u'such.<br',
   u'person'],
  [u'story', u'person'],
  [u'crime', u'commentator', u'son', u'activity'],
  [u'movie'],
  [u'<br',
   u'task',
   u'woman',
   u'age',
   u'death',
   u'age',
   u'girl',
   u'home',
   u'mother',
   u'hoodlum',
   u'son'],
  [u'scene'],
  [u'director', u'shot', u'story'],
  [u'star', u'expertise', u'direction', u'second-grader', u'brave'],
  [u'database', u'score', u'change'],
  [u'practice', u'mood', u'time'],
  [u'surprise', u'here.<br', u'surprise', u'comment', u'hope', u'rating'],
  [u'movie', u'conclusion', u'person'],
  [u'movie'],
  [u'gem']],
 [[u'internet', u'research', u'course'],
  [u'hell',
   u'woman',
   u'movie',
   u'bank',
   u'scheme',
   u'kiddnapping',
   u'murder',
   u'boy',
   u'crime',
   u'drama'],
  [u'script', u'gunfight', u'slow', u'motion', u'death', u'scene'],
  [u'gunfight', u'fun', u'theme'],
  [u'movie', u'sense', u'ego', u'intimidation', u'male', u'agenda'],
  [u'use', u'period'],
  [u'set',
   u'piece',
   u'film',
   u'cult',
   u'film',
   u'bloodiness',
   u'ruthlessness',
   u'stride',
   u'comment',
   u'man',
   u'cost'],
  [u'mom']],
 [[u'movie', u'subject', u'death', u'penalty']],
 [[u'statement', u'death', u'penalty', u'attack', u'way', u'justice'],
  [u'sequence', u'parallel', u'crime', u'execution', u'work'],
  [u'giant',
   u'performance',
   u'level',
   u'emotion.<br',
   u'actor',
   u'director',
   u'well.<br',
   u'rate']],
 [[u'comment', u'state', u'favour', u'death', u'penalty'],
  [u'way', u'thing', u'film'],
  [u'performance', u'round', u'script'],
  [u'fact', u'fault'],
  [u'issue', u'capital', u'punishment', u'stance', u'character', u'nun'],
  [u'individual', u'character', u'story'],
  [u'film']],
 [[u'movie',
   u'feature',
   u'relation',
   u'message',
   u'movie',
   u'death',
   u'penalty',
   u'execution'],
  [u'stress',
   u'drama',
   u'victim',
   u'parent',
   u'reason',
   u'hatred',
   u'desire',
   u'revenge',
   u'lessening',
   u'horror',
   u'execution',
   u'vision',
   u'question'],
  [u'movie',
   u'man',
   u'person',
   u'movie',
   u'execution',
   u'idea',
   u'execution',
   u'murder'],
  [u'weight',
   u'moment',
   u'execution',
   u'course',
   u'catharsis',
   u'word',
   u'act',
   u'execution',
   u'parallel',
   u'cut',
   u'image',
   u'murder',
   u'scene',
   u'forest',
   u'murder',
   u'cold',
   u'way']],
 [[u'movie', u'year', u'list', u'film'],
  [u'passion', u'justice'],
  [u'perspective', u'death', u'penalty', u'thing', u'cast'],
  [u'role', u'play'],
  [u'level', u'debauchery', u'movie'],
  [u'man', u'past', u'excuse'],
  [u'sense', u'murderer', u'aid', u'character', u'sister'],
  [u'character', u'person', u'action', u'excuse', u'them.<br'],
  [u'cameo', u'film', u'funny-man', u'today'],
  [u'movie', u'reason', u'work', u'opinion', u'exception', u'movie', u'book']],
 [[u'film',
   u'viewer',
   u'expectation',
   u'victim',
   u'crime',
   u'treatment',
   u'consideration',
   u'perpetrator'],
  [u'murderer.<br',
   u'man',
   u'realism',
   u'simplicity',
   u'story',
   u'crack',
   u'lawyer',
   u'story',
   u'twist'],
  [u'film', u'light', u'racist', u'murder'],
  [u'crime'],
  [u'death',
   u'penalty',
   u'film',
   u'question',
   u'redemption',
   u'inequity',
   u'justice',
   u'appropriateness',
   u'death',
   u'penalty.<br',
   u'performance'],
  [u'moment', u'film', u'depth', u'ability']],
 [[u'person',
   u'character',
   u'combination',
   u'killer',
   u'murder',
   u'teenagers.<br'],
  [u'character', u'mixture', u'killer', u'person', u'murder'],
  [u'conflict',
   u'present',
   u'party',
   u'swearing',
   u'killing',
   u'story',
   u'well.<br',
   u'approach',
   u'convict',
   u'death',
   u'responsibility',
   u'action',
   u'victim',
   u'family',
   u'convict',
   u'remorse',
   u'parties.<br',
   u'belief',
   u'sentence'],
  [u'place',
   u'theory',
   u'death',
   u'death',
   u'sort',
   u'sense',
   u'person',
   u'freedom',
   u'rest',
   u'day',
   u'sense',
   u'room',
   u'hour',
   u'rest',
   u'day',
   u'thing'],
  [u'responsibility', u'person', u'kid', u'car', u'lake'],
  [u'freedom', u'rest', u'day', u'point', u'story'],
  [u'kind',
   u'remorse',
   u'guidance.<br',
   u'note',
   u'parent',
   u'son',
   u'parent',
   u'girl',
   u'mutter',
   u'death'],
  [u'doubt',
   u'mind',
   u'friend',
   u'thought',
   u'poncelet',
   u'boy',
   u'man',
   u'girl-hence',
   u'poncelet',
   u'responsibility'],
  [u'girl', u'death']],
 [[u'tear', u'end'],
  [u'film',
   u'issue',
   u'killing',
   u'murder',
   u'death',
   u'penalty',
   u'point',
   u'forgiveness',
   u'way']],
 [[u'flight',
   u'man',
   u'killer',
   u'demand',
   u'businessman',
   u'father',
   u'thriller',
   u'audience',
   u'edge',
   u'seat'],
  [u'premise', u'phone', u'film'],
  [u'average', u'suspense', u'direction'],
  [u'film', u'pace', u'spot'],
  [u'job', u'camera'],
  [u'movie', u'share', u'moment', u'film'],
  [u'way', u'passenger'],
  [u'skill', u'storytelling.<br', u'cast'],
  [u'performance', u'character'],
  [u'performance', u'villain'],
  [u'way'],
  [u'actor', u'brain', u'movie', u'vibe'],
  [u'setting', u'fear', u'isolation', u'escape'],
  [u'tone', u'film'],
  [u'screenplay'],
  [u'moment', u'viewer'],
  [u'head'],
  [u'approach'],
  [u'end', u'thriller', u'movie', u'summer']],
 [[u'article', u'film', u'article', u'movie', u'audience'],
  [u'way', u'film', u'bit', u'person', u'choice'],
  [u'thing', u'films.<br', u'movie', u'person', u'kind', u'reaction'],
  [u'death-penalty-supporter', u'opponent', u'belief'],
  [u'death-penalty-opponent', u'belief', u'death', u'penalty', u'world'],
  [u'effect', u'thing', u'movie', u'choice', u'path'],
  [u'thing', u'person', u'lesson'],
  [u'lesson', u'yourself.<br', u'music', u'time']],
 [[u'film', u'death', u'penalty', u'world', u'topic'],
  [u'testament',
   u'intelligence',
   u'sensitivity',
   u'trait',
   u'role',
   u'film',
   u'fact',
   u'hint',
   u'compromise',
   u'camp',
   u'word',
   u'point',
   u'sense',
   u'picture',
   u'compromise']],
 [[u'capital-punishment', u'movie'],
  [u'emotion', u'story'],
  [u'movie', u'term', u'way', u'character'],
  [u'movie', u'book'],
  [u'sister', u'tone', u'religious(which']],
 [[u'movie', u'argument'],
  [u'job', u'result', u'kind', u'docu-drama', u'school', u'theme'],
  [u'face', u'love']],
 [[u'film'],
  [u'wife',
   u'sarandon',
   u'performance',
   u'sister',
   u'murder',
   u'injection',
   u'minute',
   u'acting',
   u'scene'],
  [u'film', u'oscar', u'actress'],
  [u'film']],
 [[u'movie', u'time'],
  [u'cinema', u'verite', u'story', u'events.<br'],
  [u'killer', u'life', u'parole', u'life', u'death'],
  [u'feeling', u'movie', u'chance', u'reconsider.<br', u'end', u'silence'],
  [u'drama',
   u'catharsis',
   u'moment',
   u'time',
   u'memory',
   u'touch',
   u'humanity']],
 [[u'film',
   u'death',
   u'penalty',
   u'person',
   u'death',
   u'penalty',
   u'case',
   u'killer',
   u'family',
   u'kid',
   u'nun',
   u'advisor'],
  [u'story', u'fanfare', u'lot', u'compassion', u'sensitivity'],
  [u'time', u'film', u'cast'],
  [u'documentary', u'eye', u'masterpiece'],
  [u'death', u'penalty', u'opinion', u'movie', u'issue'],
  [u'screenwriter', u'director', u'material', u'face', u'film', u'scene'],
  [u'film', u'light', u'scene', u'blood', u'violence']],
 [[u'lack', u'word'],
  [u'opinion', u'actress', u'oscar', u'credit'],
  [u'amazing', u'performance', u'performance'],
  [u'performance', u'portrayal', u'sister'],
  [u'artificiality', u'oscar', u'person', u'anyway.<br', u'film', u'message'],
  [u'person', u'feeling', u'death', u'penalty', u'portrayal', u'movie'],
  [u'debate', u'weight'],
  [u'death'],
  [u'time', u'way', u'victim', u'torment', u'parent'],
  [u'word', u'bravo.<br', u'movie', u'oscar']],
 [[u'movie', u'story', u'nun', u'advisor', u'killer', u'death', u'row'],
  [u'movie', u'nun', u'role'],
  [u'doubt', u'role'],
  [u'scene', u'execution']],
 [[u'effort', u'movie', u'row'],
  [u'movie', u'performance', u'heart'],
  [u'acting']],
 [[u'suspense', u'movie'],
  [u'way', u'theme', u'seat', u'brain', u'camera', u'work', u'plot', u'time'],
  [u'plot', u'movie', u'goer', u'minute'],
  [u'day', u'character', u'moment', u'person', u'line'],
  [u'folk', u'movie'],
  [u'idea', u'movie'],
  [u'deal', u'sense']],
 [[u'book', u'movie', u'film', u'adaptation'],
  [u'book'],
  [u'filmaker', u'repetoire'],
  [u'bit',
   u'filmaking',
   u'reflection',
   u'victim',
   u'glass',
   u'execution',
   u'room',
   u'end']],
 [[u'emotion', u'belief', u'piece', u'artwork', u'book'],
  [u'acting'],
  [u'movie', u'movie']],
 [[u'fotography',
   u'history',
   u'soundtrack',
   u'credibility',
   u'generation',
   u'actor'],
  [u'movie', u'guess', u'doubt', u'death', u'man', u'spite', u'thing']],
 [[u'film'],
  [u'answer', u'film', u'reception'],
  [u'film',
   u'controversy',
   u'portrayal',
   u'compassion',
   u'murderer',
   u'anti-death',
   u'penalty',
   u'attitude'],
  [u'user', u'film', u'comment'],
  [u'ranking', u'relation', u'quality'],
  [u'person', u'film', u'death', u'penalty'],
  [u'death',
   u'penalty',
   u'film',
   u'person',
   u'perspective',
   u'question',
   u'beliefs.<br'],
  [u'point-of-view', u'point'],
  [u'congratulation', u'thank', u'piece', u'filmmaking']],
 [[u'movie'],
  [u'deal'],
  [u'film', u'job', u'aspect', u'topic'],
  [u'argument'],
  [u'death',
   u'penalty',
   u'movie.<br',
   u'relic',
   u'time',
   u'place',
   u'society',
   u'movie',
   u'argument',
   u'death',
   u'penalty'],
  [u'reality',
   u'argument',
   u'death',
   u'penalty.<br',
   u'performance',
   u'filmmaking',
   u'film',
   u'years<br']],
 [[u'time', u'movie', u'movie'], [u'music'], [u'masterpiece']],
 [[u'movie'],
  [u'movie', u'film', u'message'],
  [u'idea',
   u'belief',
   u'viewer',
   u'film',
   u'way',
   u'view',
   u'death',
   u'penalty',
   u'murder',
   u'murderer'],
  [u'question',
   u'child',
   u'movie',
   u'fact',
   u'conviction',
   u'murder',
   u'portrayal',
   u'nomination'],
  [u'job', u'award']],
 [[u'piece', u'filmmaking'],
  [u'acting', u'script', u'issue', u'death', u'penalty', u'homage'],
  [u'film', u'deal', u'matter', u'rating']],
 [[u'world',
   u'subject',
   u'film',
   u'list',
   u'sensibility',
   u'sensitivity',
   u'film',
   u'measuring',
   u'stick'],
  [u'irony', u'matter', u'film', u'film', u'pro', u'death', u'penalty'],
  [u'heart', u'subject', u'reality', u'reason', u'thing'],
  [u'forgiveness',
   u'crime',
   u'perpetrator',
   u'strength',
   u'life.<br',
   u'adaptation',
   u'novel',
   u'sister',
   u'involvement',
   u'death-row',
   u'inmate',
   u'year',
   u'faith'],
  [u'film',
   u'pursuit',
   u'justice',
   u'dignity',
   u'letter',
   u'death-row',
   u'inmate'],
  [u'sister',
   u'prejean',
   u'journey',
   u'sentimentality',
   u'experience',
   u'audience'],
  [u'medium',
   u'cinema',
   u'experience',
   u'sister',
   u'prejean',
   u'film',
   u'well.<br',
   u'soul-stirring',
   u'portrayal',
   u'sister',
   u'prejean'],
  [u'depth',
   u'performance',
   u'way',
   u'sister',
   u'prejean',
   u'fragility',
   u'vulnerability',
   u'toughness',
   u'endeavor',
   u'behalf',
   u'reality',
   u'total'],
  [u'point',
   u'view',
   u'matter',
   u'film',
   u'sister',
   u'prejean',
   u'question',
   u'individual',
   u'proportion',
   u'melodramatic',
   u'humanity',
   u'person',
   u'expression',
   u'characterization'],
  [u'performance', u'career'],
  [u'<br', u'performance', u'portrayal', u'performance'],
  [u'way'],
  [u'person', u'caricature', u'monster', u'crime'],
  [u'fact'],
  [u'fact', u'guy', u'door', u'thing'],
  [u'strength',
   u'performance',
   u'depth',
   u'nuance',
   u'eye',
   u'imperfection',
   u'soul'],
  [u'performance',
   u'it.<br',
   u'stand-out',
   u'performance',
   u'role',
   u'father',
   u'victim'],
  [u'screen',
   u'time',
   u'character',
   u'way',
   u'sister',
   u'prejean',
   u'insight',
   u'position',
   u'surface'],
  [u'way',
   u'balance',
   u'perspective',
   u'story',
   u'message',
   u'film.<br',
   u'cast',
   u'sister'],
  [u'film',
   u'mind',
   u'way',
   u'death',
   u'penalty',
   u'intention',
   u'thought-provoking',
   u'film'],
  [u'point', u'view', u'film', u'impact', u'mind', u'nature', u'forgiveness'],
  [u'character', u'forgiveness', u'task', u'lifetime', u'work'],
  [u'thing',
   u'life',
   u'film',
   u'appreciation',
   u'individual',
   u'sister',
   u'prejean',
   u'life',
   u'need',
   u'filmmaker',
   u'life',
   u'million',
   u'person']],
 [[u'monster',
   u"being.'<br",
   u'story',
   u'nun',
   u'sister',
   u'murderer',
   u'rapist',
   u'bound',
   u'injection',
   u'machine',
   u'couple\x85',
   u'sister',
   u'convict',
   u'act',
   u'woman\x85',
   u'<br',
   u'meeting',
   u'nun',
   u'accomplice',
   u'kid',
   u'trial',
   u'order',
   u'board',
   u'hearing',
   u'life\x85',
   u'<br',
   u'film',
   u'audience',
   u'thought',
   u'consequence',
   u'death',
   u'penalty',
   u'voice',
   u'parent',
   u'kid',
   u'wood',
   u'execution',
   u'character',
   u'doubt',
   u'rightness',
   u'moment',
   u'detector',
   u'test',
   u'mother',
   u'victim',
   u'government',
   u'drug',
   u'black',
   u'kid',
   u'there\x85',
   u'poncelet',
   u'child',
   u'laugh',
   u'them\x85',
   u'<br',
   u'scene',
   u'execution',
   u'death-row',
   u'inmate',
   u'facade',
   u'identity\x85',
   u'harmony',
   u'souls\x85',
   u'eye',
   u'tears\x85',
   u'thing',
   u'world',
   u'face',
   u"love''\x97in",
   u'moment',
   u'face',
   u'love',
   u'him\x85']],
 [[u'thriller'],
  [u'streak', u'trash', u'night', u'disappointment', u'scream', u'sequel'],
  [u'movie',
   u'gripping',
   u'suspense',
   u'thriller',
   u'performance',
   u'hotel',
   u'manager',
   u'connection',
   u'figure',
   u'hotel'],
  [u'airport', u'flight', u'bay', u'breeze'],
  [u'father',
   u'demand',
   u'connection',
   u'hotel',
   u'assassination.<br',
   u'thriller',
   u'predictability',
   u'scene'],
  [u'thriller', u'beauty'],
  [u'effect'],
  [u'suspense'],
  [u'desperation',
   u'decision',
   u'escape',
   u'position.<br',
   u'entertaining',
   u'performance'],
  [u'face', u'ability', u'role', u'demand'],
  [u'hand', u'trailer', u'transition', u'stranger', u'jackass'],
  [u'guy', u'persona', u'madman'],
  [u'identity', u'role', u'ass', u'kicked.<br', u'feature'],
  [u'plenty',
   u'chalkboard',
   u'screeching',
   u'moment',
   u'heart',
   u'jumper',
   u'eye',
   u'screen',
   u'watch',
   u'picture'],
  [u'pleasure', u'performance', u'look', u'creepier', u'minute', u'thriller']],
 [[u'job', u'film'],
  [u'performance', u'role'],
  [u'viewer',
   u'opinion',
   u'death',
   u'penalty',
   u'subject',
   u'time',
   u'direction']],
 [[u'filmmaker', u'fervor', u'picture'], [u'note', u'film']],
 [[u'film'], [u'riot', u'tyrant', u'cruise', u'director']],
 [[u'fun', u'movie', u'duo'],
  [u'film', u'comedy', u'laugh'],
  [u'process', u'passenger', u'crew', u'member'],
  [u'crew', u'member', u'cruise', u'director', u'hilt', u'dictator'],
  [u'dance', u'host', u'star', u'movie', u'star'],
  [u'actress', u'love'],
  [u'mother', u'stage', u'actress'],
  [u'hoot', u'villain', u'straight', u'moment', u'star'],
  [u'gem', u'comedy.<br']],
 [[u'movie'],
  [u'comedy', u'minute', u'film', u'end', u'comedy', u'point'],
  [u'addition', u'movie']],
 [[u'friends.<br',
   u'film',
   u'course',
   u'team',
   u'effort',
   u'film',
   u'category',
   u'vehicle',
   u'fan',
   u'principle',
   u'actor',
   u'style',
   u'comedy',
   u'plots.<br',
   u'spiner',
   u'term',
   u'laugh',
   u'cruise',
   u'director.<br',
   u'lady']],
 [[u'kind', u'movie', u'person', u'age', u'movie'],
  [u'performance', u'tooth', u'scenery', u'grease', u'stain'],
  [u'uncle', u'polyester', u'performance', u'nomination'],
  [u'true-to-life',
   u'performance',
   u'man',
   u'milieu',
   u'farce.<br',
   u'film',
   u'person',
   u'humor',
   u'person',
   u'farce',
   u'ability',
   u'character',
   u'reality',
   u'character.<br',
   u'performance',
   u'version',
   u'lounge',
   u'lizard'],
  [u'host', u'life', u'type'],
  [u'rendition',
   u'slime',
   u'merit',
   u'study',
   u'example',
   u'contrast',
   u'pathetic.<br',
   u'plot',
   u'theme',
   u'result'],
  [u'plot',
   u'theme',
   u'time',
   u'theme.<br',
   u'rest',
   u'cast',
   u'professional',
   u'skill',
   u'role',
   u'spotlight'],
  [u'film', u'tier', u'actor', u'shine'],
  [u'film.<br',
   u'plot',
   u'performer',
   u'film',
   u'treat',
   u'person',
   u'actor',
   u'craft']],
 [[u'comment',
   u'film',
   u'view',
   u'phoned-in',
   u'performance',
   u'manner',
   u'time',
   u'view',
   u'mega-star',
   u'deal',
   u'release.<br',
   u'exception',
   u'principal',
   u'performer',
   u'experience',
   u'lot',
   u'tooth',
   u'film',
   u'work'],
  [u'classis',
   u'career',
   u'fun',
   u'film',
   u'lot',
   u'scenery',
   u'well.<br',
   u'viewpoint',
   u'film',
   u'play',
   u'viewpoint',
   u'film',
   u'casablance',
   u'term',
   u'lead'],
  [u'piece', u'nostalgia', u'cast']],
 [[u'movie'],
  [u'role'],
  [u'talent.<br',
   u'chemistry',
   u'cast',
   u'member',
   u'picture',
   u'team',
   u'time',
   u'vehicle',
   u'talent',
   u'use'],
  [u'character', u'storyline', u'comedy', u'character', u'movie']],
 [[u'team', u'craft', u'moment', u'screen'],
  [u'film',
   u'example',
   u'this.<br',
   u'time',
   u'brothers-in-law',
   u'land',
   u'ship',
   u'dance',
   u'instructor',
   u'board.<br',
   u'course',
   u'boss',
   u'perfectionist',
   u'person',
   u'boy'],
  [u'lesson',
   u'dancing',
   u'dance',
   u'rumba',
   u'boat',
   u'owner',
   u'dance',
   u'instructor'],
  [u'board', u'mother'],
  [u'money'],
  [u'widower', u'ever.<br', u'film', u'tribute', u'career']],
 [[u'role'],
  [u'story', u'setting', u'pace'],
  [u'scream', u'college', u'killer'],
  [u'thriller', u'originality', u'character'],
  [u'film-maker',
   u'idea',
   u'thriller',
   u'horror',
   u'genre',
   u'home',
   u'tv',
   u'movie'],
  [u'job']],
 [[u'buddy'],
  [u'lot', u'movie', u'movie'],
  [u'sea', u'comedy', u'movie', u'think']],
 [[u'ship', u'knockout', u'lot', u'scenery', u'fun', u'curf'],
  [u'height', u'career', u'dog']],
 [[u'movie', u'entertaining', u'world'],
  [u'laugh', u'feeling'],
  [u'geezer', u'fun', u'age', u'time', u'joke'],
  [u'chemistry', u'in-law'],
  [u'plot', u'fun', u'matter'],
  [u'movie', u'laugh']],
 [[u'thought'],
  [u'<br',
   u'light',
   u'year',
   u'comedy',
   u'budget',
   u'screen',
   u'movie',
   u'worth'],
  [u'movie', u'break'],
  [u'<br', u'light', u'fun'],
  [u'movie'],
  [u'rendition'],
  [u'character', u'foil', u'comedy', u'movie', u'god']],
 [[u'comedy', u'laugh', u'fan'],
  [u'film',
   u'man',
   u'film',
   u'bunch',
   u'buddy',
   u'team-up',
   u'duo',
   u'twilight',
   u'year'],
  [u'idea',
   u'gambler',
   u'thousand',
   u'dollar',
   u'debt',
   u'friend',
   u'cruise',
   u'lady',
   u'catch',
   u'dance',
   u'host',
   u'film',
   u'chuckle',
   u'courtesy'],
  [u'data',
   u'generation',
   u'snobby',
   u'ball-busting',
   u'dance',
   u'coordinator'],
  [u'boss', u'actor', u'department']],
 [[u'job', u'movie'],
  [u'teenager', u'fashion'],
  [u'movie', u'job'],
  [u'movie', u'cheap']],
 [[u'kid', u'character', u'actor'],
  [u'<br', u'movie', u'movie'],
  [u'movie', u'today', u'standard'],
  [u'<br', u'movie', u'acting']],
 [[u'time', u'movie', u'mind', u'movie'],
  [u'movie',
   u'hostage',
   u'situation',
   u'school',
   u'extent',
   u'boy',
   u'trouble'],
  [u'effect'],
  [u'effect'],
  [u'decline', u'time', u'effect'],
  [u'movie', u'plot', u'feeling', u'substance-less', u'kid'],
  [u'movie', u'effect'],
  [u'fourth', u'movie', u'effect', u'movie', u'time', u'effect'],
  [u'ghostbuster',
   u'movie',
   u'rest',
   u'top-grossing',
   u'movie',
   u'tripe',
   u'plot',
   u'lot',
   u'eye',
   u'candy'],
  [u'movie', u'ny', u'junk.<br', u'effect', u'junk'],
  [u'point', u'toy', u'soldier', u'movie'],
  [u'content', u'movie', u'extent'],
  [u'dog'],
  [u'appreciation', u'site', u'fact', u'movie', u'film'],
  [u'plot', u'scene', u'scene', u'gangster', u'movie'],
  [u'tangent.<br', u'soldier', u'fun'],
  [u'insubordination',
   u'teenager',
   u'member',
   u'authority',
   u'hostage',
   u'taker'],
  [u'rebelion', u'topic', u'majority', u'comedy'],
  [u'tension',
   u'thrill',
   u'character',
   u'fire-arm',
   u'knock',
   u'guy',
   u'point',
   u'film'],
  [u'acting', u'tripe', u'there.<br', u'soldier', u'fun'],
  [u'blowhard', u'rate', u'movie']],
 [[u'film', u'gap', u'logic'],
  [u'movie', u'fun', u'teen', u'romp', u'action', u'flick'],
  [u'action', u'excitement', u'moment'],
  [u'lot', u'flick'],
  [u'assumption']],
 [[u'toy',
   u'soldier',
   u'story',
   u'misfit',
   u'boy',
   u'attempt',
   u'school',
   u'terrorist',
   u'invasion',
   u'government',
   u'leader',
   u'father'],
  [u'headmaster',
   u'school',
   u'guy',
   u'student',
   u'sense',
   u'discipline.<br',
   u'soldier',
   u'action',
   u'hostage-crisis-at-school',
   u'movie'],
  [u'appeal', u'terrorist', u'movie', u'group'],
  [u'school', u'police', u'challenge', u'group', u'guy', u'school'],
  [u'too.<br', u'movie'],
  [u'pace'],
  [u'performance']],
 [[u'screening', u'movie', u'tonight'],
  [u'villain'],
  [u'scariest', u'guy'],
  [u'end'],
  [u'movie', u'trailer']],
 [[u'soldier',
   u'action',
   u'movie',
   u'effort',
   u'scriptwriter',
   u'director',
   u'counter-terrorist'],
  [u'end', u'credit', u'dozen', u'officer', u'official'],
  [u'movie',
   u'control',
   u'hostage',
   u'situation',
   u'movie',
   u'existence',
   u'time'],
  [u'end', u'time'],
  [u'use', u'air', u'support', u'bit'],
  [u'movie', u'counter-terrorist', u'force', u'accuracy']],
 [[u'movie', u'phase'],
  [u'film', u'mid-80', u'mid-90', u'place', u'up.<br', u'movie', u'favourite'],
  [u'time', u'fun', u'film', u'plenty', u'excitement', u'way'],
  [u'sure',
   u'shadow',
   u'budget',
   u'film',
   u'this.<br',
   u'rent',
   u'purchase',
   u'discount',
   u'price']],
 [[u'film', u'example', u'escapism'],
  [u'<br', u'cast', u'film', u'character'],
  [u'friendship',
   u'boy',
   u'heart',
   u'warming',
   u'group',
   u'boy',
   u'group',
   u'boy'],
  [u'rebel', u'teenager.<br', u'fun', u'film'],
  [u'quality']],
 [[u'movie', u'gosset'],
  [u'list'],
  [u'plot', u'script'],
  [u'gosset', u'performance', u'career']],
 [[u'movie', u'time', u'movie'],
  [u'acting', u'guy', u'plot'],
  [u'movie'],
  [u'moment', u'moment', u'moment'],
  [u'movie']],
 [[u'movie', u'title', u'drama'],
  [u'viewer',
   u'movie',
   u'man',
   u'overcome',
   u'odd',
   u'role',
   u'guidance',
   u'leadership',
   u'character',
   u'movie'],
  [u'time',
   u'movie',
   u'momentum',
   u'dissapointment',
   u'actor',
   u'film',
   u'industry',
   u'movie']],
 [[u'movie'], [u'acting', u'plot', u'movie', u'lot', u'movie']],
 [[u'achievement', u'soldier', u'fun', u'movie'],
  [u'cast', u'job', u'aspect', u'story', u'derek']],
 [[u'entertaining', u'action', u'movie'],
  [u'time', u'vhs', u'machine', u'copy'],
  [u'movie', u'reality', u'laugh', u'hour', u'half']],
 [[u'picture', u'consideration', u'entertainment', u'job'],
  [u'pulse', u'time', u'dozen', u'times.<br', u'actor', u'time', u'work'],
  [u'recognition', u'it.<br', u'fun']],
 [[u'film', u'film', u'thriller', u'understood', u'person', u'movie', u'time'],
  [u'year'],
  [u'thriller', u'plenty', u'laugh', u'eye', u'camera.<br', u'mcadam'],
  [u'day', u'guy', u'guy'],
  [u'day', u'agent', u'career', u'bad.<br', u'directing'],
  [u'story',
   u'dialog',
   u'sprucing',
   u'up.<br',
   u'fun',
   u'film',
   u'person',
   u'credit'],
  [u'mood', u'thriller', u'ticket']],
 [[u'actor', u'crush'],
  [u'total', u'movie'],
  [u'action', u'mayhem', u'man', u'attention', u'screen']],
 [[u'summary',
   u'book',
   u'boy',
   u'year',
   u'school',
   u'trouble',
   u'maker',
   u'school',
   u'school'],
  [u'boy', u'school', u'terrorist'],
  [u'friend', u'hack', u'school', u'database'],
  [u'help', u'teacher', u'terrorist', u'plan', u'school'],
  [u'book',
   u'clich\xe9.<br',
   u'movie',
   u'terrorist',
   u'terrorist',
   u'leader',
   u'group',
   u'friend'],
  [u'trouble', u'stuff'],
  [u'movie'],
  [u'character'],
  [u'rest', u'guy', u'kid', u'way', u'to).<br', u'action', u'scene'],
  [u'terrorist', u'guy'],
  [u'movie', u'man', u'kid'],
  [u'genre', u'film', u'soul', u'purpose', u'fun', u'soldier'],
  [u'story', u'line', u'dialogue'],
  [u'moment', u'tv', u'movie', u'collection']],
 [[u'movie',
   u'teenager',
   u'problem',
   u'authority',
   u'toy',
   u'soldier',
   u'viewing'],
  [u'movie', u'adult', u'credit', u'writer', u'deal'],
  [u'glee', u'guy', u'butt'],
  [u'score', u'cherry'],
  [u'reason', u'toy', u'soldier', u'need'],
  [u'entertaining', u'movie', u'pantheon']],
 [[u'surprise'],
  [u'movie', u'title', u'terrorist', u'situation', u'school'],
  [u'soldier', u'time', u'period', u'action', u'movie'],
  [u'action', u'plot', u'way', u'guy', u'douchebag', u'movie', u'action'],
  [u'rating']],
 [[u'screw',
   u'plot',
   u'terrorist',
   u'school',
   u'hostage',
   u'demand',
   u'head',
   u'prison'],
  [u'plot', u'sure'],
  [u'film'],
  [u'film',
   u'tolerance',
   u'film',
   u'violence',
   u'remember',
   u'right',
   u'movie'],
  [u'guy',
   u'helicopter',
   u'machine',
   u'gun',
   u'force',
   u'guy',
   u'hand',
   u'sure',
   u'terrorist',
   u'capped',
   u'head'],
  [u'action', u'humor', u'acting', u'film', u'experience']],
 [[u'time', u'movie'],
  [u'reason', u'movie', u'person', u'world', u'job', u'movie'],
  [u'movie'],
  [u'script', u'screenplay'],
  [u'year', u'course', u'theater'],
  [u'friend'],
  [u'work']],
 [[u'film', u'tech', u'massacre', u'film', u'guy', u'home', u'goonies'],
  [u'way', u'skateboard', u'floor', u'trip'],
  [u'cheesiness', u'cult', u'status']],
 [[u'film', u'overtone'],
  [u'soundtrack', u'way', u'point', u'visual'],
  [u'scene', u'example'],
  [u'<br', u'idea', u'movie', u'acting'],
  [u'<br', u'soundtrack']],
 [[u'performance', u'toy', u'soldier'],
  [u'prankster', u'friend'],
  [u'day',
   u'school',
   u'boy',
   u'group',
   u'terrorist',
   u'boy',
   u'teacher',
   u'hostage',
   u'school',
   u'leader',
   u'father',
   u'prison',
   u'boy',
   u'hostage',
   u'kid',
   u'son',
   u'person',
   u'half',
   u'school',
   u'mouth',
   u'action'],
  [u'government', u'way', u'boy', u'matter', u'hand']],
 [[u'idea', u'film', u'terrorist', u'action', u'film'],
  [u'vengeance', u'film', u'suspense', u'plot']],
 [[u'movie', u'comedian', u'mid-50', u'white', u'body'],
  [u'rap', u'music', u'man'],
  [u'humor', u'movie', u'trouble', u'behavior', u'community']],
 [[u'movie',
   u'year',
   u'half',
   u'year',
   u'birthday',
   u'suspense',
   u'action',
   u'drama',
   u'movie',
   u'school',
   u'kid',
   u'kid',
   u'time',
   u'rejection',
   u'school',
   u'act',
   u'act',
   u'rebellion',
   u'school',
   u'terrorist',
   u'day',
   u'reason',
   u'leader',
   u'father',
   u'leader',
   u'student',
   u'bomb',
   u'order',
   u'father',
   u'back.<br',
   u'friend',
   u'guy',
   u'past',
   u'living',
   u'family',
   u'father',
   u'terrorist',
   u'school',
   u'friend',
   u'band',
   u'terrorist',
   u'act',
   u'tactics.<br',
   u'movie',
   u'person',
   u'person',
   u'hostage',
   u'movie',
   u'soldier',
   u'thriller',
   u'heart',
   u'beating',
   u'student',
   u'age',
   u'terrorist',
   u'school',
   u'movie',
   u'minute',
   u'time',
   u'decision']],
 [[u'movie', u'movie', u'today'],
  [u'fact',
   u'movie',
   u'mastermind',
   u'variation',
   u'theme',
   u'fun',
   u'matter.<br',
   u'film'],
  [u'comradre', u'character', u'odd', u'theme', u'film'],
  [u'film'],
  [u'thing', u'trilogy', u'trip', u'memory', u'lane'],
  [u'support', u'film', u'villain'],
  [u'sleepwalk',
   u'role',
   u'brevity',
   u'film',
   u'relationship',
   u'nature.<br',
   u'action'],
  [u'today',
   u'standard',
   u'tv',
   u'movie',
   u'production',
   u'value',
   u'violence',
   u'film',
   u'school',
   u'student'],
  [u'director',
   u'budget',
   u'moment',
   u'humor.<br',
   u'park',
   u'brain',
   u'door',
   u'enjoy',
   u'action',
   u'flick',
   u'material']],
 [[u'terrorist', u'hostage', u'school', u'demand'],
  [u'premise', u'film'],
  [u'group', u'kid', u'film', u'underwear', u'guy'],
  [u'actor'],
  [u'action', u'film'],
  [u'performance',
   u'ball',
   u'headmaster',
   u'dean.<br',
   u'lot',
   u'action',
   u'suspense',
   u'explosion',
   u'brain'],
  [u'<br', u'complaint', u'bit', u'ending', u'violence', u'rating']],
 [[u'soldier', u'movie'],
  [u'attention', u'story', u'life'],
  [u'movie', u'showcase', u'talent'],
  [u'movie', u'actor', u'spotlight', u'movie', u'showcase', u'character'],
  [u'movie', u'fan', u'movie']],
 [[u'movie', u'story', u'line', u'bit'],
  [u'actor', u'performance'],
  [u'guy', u'job', u'role'],
  [u'movie', u'edge', u'seat', u'time', u'plot', u'movie']],
 [[u'theater', u'mood', u'time'],
  [u'kind', u'mindset', u'spirit'],
  [u'trailer',
   u'water',
   u'theme',
   u'flashback',
   u'movie',
   u'dealt',
   u'subject',
   u'waterworld'],
  [u'promise', u'effect'],
  [u'features.<br', u'minute', u'fear', u'hesitancy'],
  [u'movie', u'midst', u'rescue', u'mission', u'orange', u'face', u'lift'],
  [u'concern', u'appearance', u'fact', u'effort'],
  [u'sunglasses', u'guy', u'toothpick', u'mouth', u'smirk'],
  [u'him.<br', u'performance', u'jab'],
  [u'rescue',
   u'scene',
   u'drama',
   u'humor',
   u'acting',
   u'film',
   u'majority',
   u'audience'],
  [u'clich\xe9s',
   u'predictability',
   u'moment',
   u'sappiness',
   u'entertainment',
   u'value.<br',
   u'feeling',
   u'pace',
   u'guy',
   u'training',
   u'session',
   u'aspect',
   u'film'],
  [u'hero',
   u'story',
   u'screen',
   u'way',
   u'audience',
   u'group.<br',
   u'rescue',
   u'swimmer'],
  [u'mission',
   u'water',
   u'disorientation',
   u'exhaustion',
   u'hypothermia',
   u'lack',
   u'oxygen',
   u'person',
   u'survival'],
  [u'everybody', u'decision', u'responsibility'],
  [u'<br',
   u'job',
   u'tribute',
   u'breed',
   u'hero',
   u'job',
   u'customers.<br',
   u'gist',
   u'<br',
   u'rescue',
   u'mission',
   u'middle',
   u'ocean',
   u'chance'],
  [u'money', u'worth']],
 [[u'blow',
   u'member',
   u'water',
   u'love',
   u'movie',
   u'play',
   u'power',
   u'trip'],
  [u'screen'],
  [u'power'],
  [u'bar', u'vampire', u'sight', u'role', u'woman'],
  [u'story',
   u'plot',
   u'etc.<br',
   u'heart',
   u'wrenching',
   u'death',
   u'scene',
   u'mind',
   u'vampire',
   u'movie']],
 [[u'novel', u'movie', u'book', u'damned', u'health'],
  [u'movie', u'health', u'book', u'brain', u'movie'],
  [u'number', u'page', u'hand', u'movie', u'novel'],
  [u'plot',
   u'movie',
   u'sea',
   u'vampire',
   u'history.<br',
   u'narration',
   u'heck',
   u'lot',
   u'vampire',
   u'damned',
   u'production',
   u'resource',
   u'flesh',
   u'storyline'],
  [u'lace', u'elegance', u'budget', u'effect'],
  [u'novel', u'movie', u'production', u'team', u'attention', u'place'],
  [u'soundtrack'],
  [u'sickness',
   u'noggin',
   u'film',
   u'goth-rock',
   u'splice',
   u'montage',
   u'minute',
   u'directing'],
  [u'movie', u'director', u'time', u'money', u'justice'],
  [u'result', u'vampire', u'scene', u'plenty', u'effect'],
  [u'contact'],
  [u'make-up'],
  [u'scene',
   u'head',
   u'day',
   u'lot',
   u'budget',
   u'right.<br',
   u'quality',
   u'movie',
   u'garbage'],
  [u'actress',
   u'life',
   u'movie',
   u'performance',
   u'plenty',
   u'belly',
   u'dancing'],
  [u'soundtrack'],
  [u'novel', u'hour', u'movie', u'director', u'hand'],
  [u'rock', u'roll', u'addition', u'slew', u'vampire', u'movie'],
  [u'director', u'movie', u'mini', u'series']],
 [[u'culture', u'acting', u'storyline', u'movie'],
  [u'bit', u'entertaining', u'fun'],
  [u'movie', u'plot', u'acting', u'scene', u'laugh', u'end', u'<br']],
 [[u'bigger,demanding', u'presence', u'eye', u'attention'],
  [u'movie',
   u'relationship',
   u'like.akasha',
   u'role',
   u'sort',
   u'movie',
   u'half',
   u'movie',
   u'her(akasha',
   u'death',
   u'fought',
   u'ancient',
   u'book',
   u'fight',
   u'ancient',
   u'secs).akasha',
   u'head',
   u'sec',
   u'punk',
   u'world.<br',
   u'akasha']],
 [[u'movie'],
  [u'movie',
   u'fun',
   u'sense',
   u'humor',
   u'person',
   u'comedy',
   u'movie',
   u'opinion']],
 [[u'film', u'scenery', u'area'],
  [u'period', u'time', u'sleep', u'vampire', u'oath', u'band'],
  [u'movie', u'icon', u'vampire', u'plot', u'death'],
  [u'member', u'study', u'vampire', u'family', u'tree'],
  [u'boss',
   u'obsession',
   u'obsession',
   u'vampire',
   u'marius',
   u'vampire',
   u'man',
   u'vampire'],
  [u'lestat', u'diary', u'killing', u'akasha'],
  [u'concert', u'news', u'vampire'],
  [u'royality', u'care', u'vampire', u'plot'],
  [u'film', u'fight', u'scene', u'music', u'location'],
  [u'plane',
   u'crash',
   u'film',
   u'premiere',
   u'set',
   u'sets.<br',
   u'film',
   u'film']],
 [[u'friend'],
  [u'music', u'story', u'line', u'emotion', u'fact'],
  [u'book', u'fan', u'unfaithfulness', u'movie', u'book', u'loyalty)i'],
  [u'movie', u'combination', u'vampire', u'lestat']],
 [[u'fact',
   u'lot',
   u'movie.<br',
   u'type',
   u'music',
   u'movie',
   u'rock',
   u'star',
   u'movie',
   u'role',
   u'person',
   u'character',
   u'sequel',
   u'stuff.<br',
   u'movie'],
  [u'vampire', u'movie']],
 [[u'movie'],
  [u'rating'],
  [u'job', u'acting'],
  [u'movie', u'vampire', u'love', u'story', u'word'],
  [u'movie']],
 [[u'rice',
   u'fan',
   u'eye',
   u'sure',
   u'movie',
   u'maker',
   u'story',
   u'<br',
   u'movie',
   u'<br',
   u'movie',
   u'vampire',
   u'movie',
   u'lestat',
   u'feature',
   u'lestat',
   u'way',
   u'way',
   u'mortal',
   u'arrogance',
   u'sheer',
   u'love',
   u'fame',
   u'flawlessly.<br',
   u'movie',
   u'scene',
   u'book',
   u'movie',
   u'do.<br',
   u'reader',
   u'love',
   u'movie',
   u'thing',
   u'goth',
   u'music',
   u'dialogue',
   u'vampire',
   u'movie',
   u'wit',
   u'character',
   u'vampire',
   u'movie']],
 [[u'movie', u'time'],
  [u'scene'],
  [u'time', u'eye'],
  [u'thing', u'ruin', u'movie', u'character'],
  [u'character', u'quality'],
  [u'reason', u'movie', u'book']],
 [[u'vampire', u'movie', u'time'],
  [u'carnage', u'vampire', u'movie'],
  [u'music'],
  [u'sequel']],
 [[u'vampire', u'movie'],
  [u'combination',
   u'attitude',
   u'rock',
   u'mood',
   u'star',
   u'movie',
   u'combination'],
  [u'advice', u'friend', u'family', u'member', u'movie', u'buying']],
 [[u'sheer',
   u'loneliness',
   u'sleep',
   u'sound',
   u'music',
   u'band',
   u'vampire',
   u'lestat'],
  [u'longing',
   u'loneliness',
   u'living',
   u'light',
   u'attitude',
   u'music',
   u'anger',
   u'vampire',
   u'evil',
   u'thousand',
   u'years.<br',
   u'film',
   u'book-to-film',
   u'adaptation'],
  [u'book', u'screen', u'disappointment'],
  [u'film',
   u'vampire',
   u'film.<br',
   u'plot',
   u'hole',
   u'incongruency',
   u'film'],
  [u'sensuality', u'sexiness', u'film'],
  [u'relationship', u'film', u'sizzling.<br', u'film', u'story'],
  [u'sensuality', u'tension', u'film']],
 [[u'vampire', u'movie'],
  [u'effect', u'casting'],
  [u'movie'],
  [u'makeup', u'costume']],
 [[u'love', u'story', u'setting'],
  [u'plot', u'plot', u'twist', u'turn', u'suspense'],
  [u'end', u'movie', u'minute', u'start', u'film', u'love', u'story'],
  [u'lady'],
  [u'voyage', u'class', u'artist', u'way', u'ticket', u'poker', u'game'],
  [u'class', u'worry'],
  [u'fall',
   u'love',
   u'audience',
   u'sinking',
   u'eyes.<br',
   u'movie',
   u'time',
   u'exploration',
   u'wreck',
   u'group',
   u'treasure',
   u'sunk'],
  [u'coast', u'voyage', u'bound'],
  [u'day',
   u'voyage',
   u'plot',
   u'story',
   u'time',
   u'entrapement',
   u'engagement',
   u'love',
   u'class',
   u'passenger'],
  [u'movie',
   u'speed',
   u'ship',
   u'newspaper',
   u'headline',
   u'publicity',
   u'night',
   u'morning'],
  [u'decision', u'year', u'experience', u'leg', u'speed'],
  [u'portrayal', u'hole', u'ship', u'gash'],
  [u'day', u'ice', u'trip', u'radio'],
  [u'word',
   u'employee',
   u'class',
   u'passenger',
   u'class',
   u'passenger',
   u'authority',
   u'information',
   u'sinking'],
  [u'metal', u'year', u'condition', u'cold', u'night'],
  [u'plot',
   u'portayal',
   u'event',
   u'time',
   u'event',
   u'place',
   u'character',
   u'story',
   u'purpose',
   u'movie',
   u'character',
   u'characteristic',
   u'idea',
   u'person',
   u'ship'],
  [u'group', u'mother', u'character', u'story', u'group', u'person', u'time'],
  [u'character', u'ship', u'designer', u'officer'],
  [u'voyage', u'voyage'],
  [u'portrayal',
   u'officer',
   u'tragedy',
   u'officer',
   u'passenger',
   u'ship',
   u'pistol'],
  [u'record',
   u'heroicly',
   u'point',
   u'monument',
   u'honor',
   u'officer',
   u'hometown'],
  [u'movie',
   u'language',
   u'problem',
   u'crew',
   u'passenger',
   u'non-english',
   u'speaking',
   u'nation'],
  [u'person', u'bed', u'water', u'room'],
  [u'brandy', u'smoking', u'cigar'],
  [u'man', u'ship', u'wife', u'lifeboat'],
  [u'addition', u'medal', u'crew', u'survivor', u'water'],
  [u'gymnasium', u'machine', u'photograph'],
  [u'outfits', u'costuming', u're-creation', u'era'],
  [u'time', u'woman', u'suffrage', u'movement'],
  [u'woman', u'time', u'security', u'seast', u'status', u'husband'],
  [u'money'],
  [u'time'],
  [u'woman', u'dinner', u'male', u'figure', u'scene'],
  [u'woman', u'time', u'holder', u'cigarette', u'time', u'movie'],
  [u'background',
   u'film',
   u'expert',
   u'year',
   u'cross-referencing',
   u'history',
   u'liberty'],
  [u'cinematography',
   u'effect',
   u'film',
   u'message',
   u'movie',
   u'person',
   u'ship',
   u'hour',
   u'demise'],
  [u'director', u'reaction', u'time', u'crisis', u'person', u'life'],
  [u'situation', u'night'],
  [u'year', u'site'],
  [u'movie', u'look', u'disaster'],
  [u'question', u'person', u'today', u'treasure', u'wreck', u'graveyard'],
  [u'today',
   u'voyage',
   u'valuable',
   u'film',
   u'value',
   u'time',
   u'matter.<br',
   u'film'],
  [u'addition', u'camera', u'pressure', u'ocean'],
  [u'probe', u'year', u'ship', u'sunk', u'perspective', u'ship'],
  [u'film', u'wreck', u'scene', u'voyage'],
  [u'shift',
   u'scene',
   u'scene',
   u'voyage',
   u'transition',
   u'story',
   u'manner'],
  [u'beginning',
   u'movie',
   u'recreation',
   u'scene',
   u'person',
   u'coast',
   u'distinction',
   u'rest',
   u'event',
   u'film.<br',
   u'biography',
   u'work',
   u'art',
   u'epic'],
  [u'history', u'novel', u'treat', u'picture'],
  [u'aspect',
   u'film',
   u'material',
   u'costuming',
   u'sound',
   u'cintematography',
   u'editing'],
  [u'character',
   u'insight',
   u'life',
   u'character',
   u'disaster',
   u'movie',
   u'you.<br']],
 [[u'arse', u'time'], [u'story', u'comedy', u'time']],
 [[u'movie', u'novel', u'vampire', u'vision'],
  [u'somebody', u'music', u'video', u'clip'],
  [u'music',
   u'shot',
   u'movie',
   u'story.<br',
   u'fan',
   u'modification',
   u'story'],
  [u'change', u'romance', u'addition', u'adaptation', u'failure'],
  [u'mood', u'century', u'angst', u'rebellion', u'music'],
  [u'book', u'element', u'movie'],
  [u'vampire',
   u'lestat',
   u'movie',
   u'creator',
   u'something.<br',
   u'effect',
   u'walking',
   u'flame',
   u'thing',
   u'movie'],
  [u'death'],
  [u'cast', u'concert'],
  [u'course',
   u'accent.<br',
   u'music',
   u'dillemas',
   u'loneliness',
   u'eternity',
   u'book',
   u'movie',
   u'scenario',
   u'movie',
   u'vampire',
   u'blood',
   u'monster'],
  [u'style'],
  [u'vampire',
   u'existence',
   u'hunger',
   u'point',
   u'view',
   u'moral',
   u'vampire',
   u'flaw',
   u'person',
   u'vision',
   u'book',
   u'vote',
   u'breakdown']],
 [[u'fact', u'attempt'],
  [u'player', u'series', u'half-dozen', u'cameo'],
  [u'player'],
  [u'reviews', u'movie', u'music', u'portrayal', u'ethos'],
  [u'place', u'entrance', u'mini', u'dance', u'scene'],
  [u'movie',
   u'breadth',
   u'book',
   u'series',
   u'supplement.<br',
   u'fan',
   u'series',
   u'style',
   u'sensitivity',
   u'treatment'],
  [u'movie', u'faithful', u'representation', u'author', u'vision']],
 [[u'book',
   u'half',
   u'character',
   u'plot',
   u'person',
   u'parent',
   u'character'],
  [u'piece', u'try', u'book', u'movie']],
 [[u'movie', u'time'],
  [u'performance'],
  [u'girl', u'role', u'person'],
  [u'change'],
  [u'portrayel'],
  [u'time', u'movie'],
  [u'mind']],
 [[u'movie', u'darkness', u'book', u'opinion', u'movie'],
  [u'campy', u'fun'],
  [u'hair', u'eye', u'book', u'hair'],
  [u'predator', u'effect', u'soundtrack']],
 [[u'adaptation', u'book', u'theme', u'damned', u'vampire', u'story'],
  [u'layer', u'character', u'surface', u'identity'],
  [u'order', u'event', u'movie', u'uneven.<br', u'thing', u'movie', u'rating'],
  [u'film', u'affect', u'vampires)had', u'public', u'girl'],
  [u'movie',
   u'job',
   u'importance',
   u'heredity',
   u'history',
   u'vampire',
   u'pride'],
  [u'scene', u'sensuality', u'damned'],
  [u'chemistry', u'acting'],
  [u'intelligence', u'shame', u'book', u'more.<br', u'movie'],
  [u'effect'],
  [u'area',
   u'incoherence',
   u'beginning',
   u'middle',
   u'movie',
   u'viewer',
   u'story',
   u'book).<br',
   u'movie',
   u'score',
   u'mix',
   u'rock',
   u'music',
   u'problem',
   u'song'],
  [u'scenery', u'story', u'damned', u'adaption', u'novel'],
  [u'change', u'piece', u'film', u'work']],
 [[u'vampire', u'tale', u'cup', u'blood', u'experience'],
  [u'consortium',
   u'undead',
   u'setting',
   u'story',
   u'shadow',
   u'darkness',
   u'soul',
   u'eternity.<br',
   u'vampire',
   u'world',
   u'year',
   u'sound',
   u'world',
   u'slumber',
   u'change',
   u'liking',
   u'venture'],
  [u'world', u'sound', u'kind', u'music', u'driving', u'sense', u'welcome'],
  [u'time', u'time', u'world', u'term'],
  [u'end', u'man', u'band', u'singer', u'world'],
  [u'vampire',
   u'concert',
   u'lestat',
   u'question',
   u'kind',
   u'fact',
   u'vampire',
   u'right',
   u'vampire',
   u'fact',
   u'lestat',
   u'year',
   u'plan',
   u'concert'],
  [u'point', u'lestat', u'vampire', u'presence'],
  [u'concert',
   u'rest',
   u'attendance',
   u'fail.<br',
   u'mistake',
   u'story',
   u'atmosphere',
   u'moment',
   u'film',
   u'bram'],
  [u'pace', u'scene', u'thrill', u'film', u'menace'],
  [u'tally',
   u'fact',
   u'flesh',
   u'win',
   u'blood-letting',
   u'taste',
   u'share',
   u'lip',
   u'mouth',
   u'stuff'],
  [u'hand', u'sequence', u'speed', u'vampire', u'air', u'eye'],
  [u'job',
   u'tooth',
   u'alienation',
   u'sense',
   u'detachment',
   u'star',
   u'power',
   u'role',
   u'look',
   u'attitude'],
  [u'sense', u'acceptance', u'scrutiny', u'hint', u'remorse', u'longing'],
  [u'performance',
   u'character',
   u'convincingly.<br',
   u'job',
   u'fact',
   u'strength',
   u'film',
   u'character',
   u'bit',
   u'way',
   u'performance'],
  [u'<br',
   u'performance',
   u'woman',
   u'role',
   u'outcome',
   u'drama',
   u'presence'],
  [u'performer', u'talent', u'beauty'],
  [u'story', u'offering', u'genre', u'fan', u'film', u'director', u'cast'],
  [u'attention',
   u'drama',
   u'story',
   u'way',
   u'thrill',
   u'horror',
   u'film',
   u'cut',
   u'appetite']],
 [[u'sum', u'plot', u'story', u'dream', u'bombshell', u'heiress'],
  [u'motor', u'love', u'life', u'motor', u'company', u'minute', u'shortie'],
  [u'style'],
  [u'theme', u'film', u'code', u'tv', u'today'],
  [u'year']],
 [[u'role', u'lisp', u'career'],
  [u'inventor',
   u'airplane',
   u'motor.<br',
   u'star',
   u'woman',
   u'love',
   u'comfort',
   u'security',
   u'man',
   u'ride',
   u'sister',
   u'producer',
   u'cosmetologist',
   u'butler).<br',
   u'star',
   u'film',
   u'toehold',
   u'talky'],
  [u'actor', u'stage', u'skid-row', u'production']],
 [[u'movie',
   u'showing',
   u'preview',
   u'theater.<br',
   u'plot',
   u'line',
   u'gentleman',
   u'script'],
  [u'rescue', u'team', u'leader', u'training', u'team', u'mission'],
  [u'movie', u'rigor', u'training', u'process', u'story', u'character'],
  [u'part.<br', u'surprise', u'movie'],
  [u'use',
   u'humor',
   u'exploration',
   u'toughness',
   u'training',
   u'fun',
   u'thing',
   u'trainer'],
  [u'movie',
   u'audience',
   u'laugh',
   u'gasp',
   u'clap',
   u'end',
   u'tribute',
   u'movie.<br',
   u'time',
   u'couple',
   u'moment',
   u'movie)and']],
 [[u'movie'],
  [u'plot'],
  [u'movie', u'story', u'line', u'comedy', u'story'],
  [u'movie']],
 [[u'crew', u'return', u'year', u'casino'],
  [u'couple', u'heist', u'money.<br'],
  [u'cast', u'expectation'],
  [u'film.<br', u'moment', u'film'],
  [u'movie', u'fun.<br', u'heist', u'movie']],
 [[u'year', u'gang', u'return'],
  [u'reason', u'heist', u'bit', u'time'],
  [u'film', u'bit', u'motivation', u'time'],
  [u'cameo', u'grace', u'movie', u'thing'],
  [u'series.<br', u'plot', u'year', u'guy', u'film', u'money', u'cop'],
  [u'gang', u'cop', u'girlfriend'],
  [u'gang', u'enemy', u'thief', u'scene', u'film']],
 [[u'adage', u'sequel'],
  [u'gang', u'lot', u'money', u'state'],
  [u'act', u'death', u'thievery', u'cop', u'flame'],
  [u'<br', u'heist', u'slick', u'thief', u'legend', u'complex'],
  [u'scene', u'character', u'development'],
  [u'<br',
   u'band',
   u'man',
   u'sequel',
   u'friend',
   u'situation',
   u'conversation'],
  [u'cousin', u'talk', u'cock-er-ney', u'accent'],
  [u'talk', u'friend', u'glass', u'mind'],
  [u'film', u'lack', u'character', u'development', u'versus'],
  [u'actor', u'film', u'square', u'peg', u'hole'],
  [u'chemistry', u'star', u'film', u'choice', u'location'],
  [u'person', u'life', u'total', u'contrast', u'gang'],
  [u'location', u'contrast', u'actor', u'style', u'film'],
  [u'slick'],
  [u'film', u'formula', u'letter', u'damage', u'film']],
 [[u'cast'],
  [u'sequel'],
  [u'tension', u'thrill', u'heist'],
  [u'light', u'parody', u'heist', u'genre'],
  [u'gripping', u'heist'],
  [u'laugh', u'dialogue', u'character', u'genius', u'scene']],
 [[u'medium', u'medium'],
  [u'plot', u'reader', u'imagination', u'structure'],
  [u'soderbergh', u'technique', u'form', u'movie'],
  [u'comment',
   u'person',
   u'heist',
   u'movie',
   u'entrapment',
   u'person',
   u'clich\xe9s',
   u'romance',
   u'tension',
   u'lead',
   u'plot',
   u'audience',
   u'awake'],
  [u'treat', u'light', u'silver', u'screen', u'disappointment', u'film']],
 [[u'director', u'cast', u'zenith', u'sequel'],
  [u'film', u'herd', u'shot'],
  [u'story', u'film', u'pleasure'],
  [u'heist', u'movie']],
 [[u'twist', u'twist'],
  [u'writer', u'element', u'story'],
  [u'actor', u'character', u'character', u'quirk'],
  [u'character', u'entity']],
 [[u'spectrum'],
  [u'hard', u'edge', u'stuff', u'game'],
  [u'day'],
  [u'scream',
   u'trequel',
   u'million',
   u'flock',
   u'minute',
   u'parlay',
   u'dig',
   u'guy']],
 [[u'story'],
  [u'work', u'film'],
  [u'fan', u'effect', u'movie', u'actor.<br', u'tribute', u'hero']],
 [[u'advance', u'screening', u'film', u'performance', u'film'],
  [u'storyline', u'film'],
  [u'performance'],
  [u'frailty',
   u'strength',
   u'character',
   u'scene',
   u'reason',
   u'rescue',
   u'elite',
   u'film',
   u'moment'],
  [u'storyline',
   u'education',
   u'sacrifice',
   u'training',
   u'rescuer',
   u'preparation',
   u'job',
   u'responsibility',
   u'life',
   u'sea'],
  [u'effect', u'rescue', u'scene', u'wowing', u'sea', u'storm'],
  [u'co-star',
   u'carnivale',
   u'captain',
   u'base',
   u'role',
   u'leader',
   u'prerequisite',
   u'ice',
   u'water',
   u'vein'],
  [u'film', u'exposure', u'respect', u'audience', u'end']],
 [[u'score', u'review', u'film', u'chorus', u'movie', u'score.<br'],
  [u'movie', u'door', u'website', u'protege'],
  [u'film',
   u'movie',
   u'therapy',
   u'humour',
   u'area',
   u'society',
   u'class',
   u'division',
   u'wealth',
   u'employment',
   u'dream',
   u'comedy',
   u'list',
   u'disappointment'],
  [u'film', u'movie'],
  [u'movie',
   u'plot',
   u'movie',
   u'tv',
   u'week',
   u'movie',
   u'opinion',
   u'version',
   u'area',
   u'fact',
   u'day',
   u'week',
   u'year',
   u'picture.<br',
   u'plot',
   u'film.<br',
   u'experience'],
  [u'movie',
   u'review',
   u'thing',
   u'time',
   u'cinema',
   u'experience',
   u'ad',
   u'nauseum',
   u'cost',
   u'cinema',
   u'ticket'],
  [u'movie']],
 [[u'web', u'pilot'],
  [u'skeptic', u'cheese', u'factor'],
  [u'struggle',
   u'movie',
   u'is.<br',
   u'course',
   u'love',
   u'story',
   u'surprise'],
  [u'movie',
   u'tale',
   u'life',
   u'time',
   u'wounds.<br',
   u'girlie',
   u'compliment',
   u'movie.<br',
   u'critic',
   u'gentleman',
   u'movie',
   u'times.<br',
   u'word',
   u'language.<br',
   u'movie',
   u'hour',
   u'end.<br',
   u'laugh',
   u'hope',
   u'movie']],
 [[u'time', u'face', u'value'],
  [u'throw', u'guy', u'revenge', u'act', u'rule', u'book', u'movie'],
  [u'cool'],
  [u'thing', u'character', u'matter', u'issue'],
  [u'case', u'matter', u'day'],
  [u'film', u'land', u'time'],
  [u'nerd', u'day'],
  [u'person']],
 [[u'movie', u'movie'],
  [u'lot', u'monument', u'locations.it', u'writer', u'director'],
  [u'plot'],
  [u'race', u'trail', u'meeting', u'place'],
  [u'lot', u'movie'],
  [u'plot', u'twist']],
 [[u'film', u'way'],
  [u'religion', u'science', u'problem', u'statement'],
  [u'development', u'film', u'change', u'character', u'removal'],
  [u'sub-plot', u'possibility'],
  [u'<br', u'performance'],
  [u'film'],
  [u'<br', u'entertainment', u'entertainment']],
 [[u'thing',
   u'<br',
   u'demon',
   u'film',
   u'vinci',
   u'code.<br',
   u'slew',
   u'book',
   u'movie',
   u'remake',
   u'resurrection',
   u'franchise'],
  [u'entertaining',
   u'film',
   u'cam',
   u'technique',
   u'lens',
   u'flare',
   u'gci',
   u'action',
   u'sequences.<br',
   u'respect',
   u'demon',
   u'fashioned.it',
   u'debate',
   u'age',
   u'subject',
   u'religion',
   u'vs',
   u'science',
   u'insight',
   u'parallel',
   u'house',
   u'way',
   u'temple',
   u'science',
   u'hadron',
   u'collider',
   u'facility.<br',
   u'guy',
   u'role',
   u'time',
   u'performance'],
  [u'support', u'rock', u'cast', u'highlight'],
  [u'film', u'saving', u'grace', u'pace'],
  [u'time',
   u'story',
   u'film',
   u'time',
   u'fault',
   u'logic.<br',
   u'criticism',
   u'science',
   u'world',
   u'authenticity'],
  [u'fault',
   u'film',
   u'maker',
   u'observation',
   u'adage',
   u'truth',
   u'way',
   u'story',
   u'<br',
   u'story',
   u'cracker',
   u'adventure',
   u'race',
   u'time',
   u'sprinkling',
   u'intelligence',
   u'twist',
   u'way.<br',
   u'fan',
   u'treasure',
   u'movie',
   u'mimic',
   u'vibe',
   u'fan',
   u'adventure',
   u'tale']],
 [[u'theater',
   u'dismay',
   u'atrocity',
   u'light',
   u'end',
   u'tunnel',
   u'company',
   u'demon',
   u'lesson.<br'],
  [u'girl'],
  [u'movie', u'thriller'],
  [u'job', u'actor'],
  [u'nomination'],
  [u'right', u'end'],
  [u'past'],
  [u'actor', u'jobs.<br', u'movie'],
  [u'explosion', u'sequence', u'end'],
  [u'job', u'tour', u'job', u'time', u'story', u'history', u'lesson'],
  [u'mind', u'child', u'list', u'explosion', u'killing', u'thousand'],
  [u'reason', u'story', u'score'],
  [u'epic', u'time', u'mix.<br', u'complaint', u'movie'],
  [u'chance', u'age', u'chance', u'son'],
  [u'thing', u'book', u'demon', u'knitt', u'movie']],
 [[u'fan', u'book', u'work', u'source', u'material', u'respect', u'work'],
  [u'intrigue', u'translate', u'film', u'virtue', u'eye', u'devotion'],
  [u'portrayal', u'glint', u'day'],
  [u'actor', u'effort', u'performances.<br', u'matter', u'lesson'],
  [u'film',
   u'boycott',
   u'film',
   u'course',
   u'million',
   u'ticket',
   u'sales.<br',
   u'story',
   u'science',
   u'piece',
   u'science',
   u'fiction',
   u'fiction'],
  [u'truth',
   u'person',
   u'book',
   u'element',
   u'story',
   u'screen',
   u'version',
   u'story',
   u'fact',
   u'installment',
   u'franchise',
   u'order',
   u'prequel',
   u'honesty',
   u'effectiveness',
   u'continuity',
   u'flow',
   u'work.<br',
   u'night',
   u'viewing',
   u'execution',
   u'ones.<br',
   u'rate']],
 [[u'book', u'movie', u'adaptation'],
  [u'game',
   u'rate',
   u'scope',
   u'thriller',
   u'race',
   u'time',
   u'puzzles.<br',
   u'plot',
   u'cast',
   u'fan'],
  [u'jean', u'shirt', u'blood', u'search'],
  [u'searcher',
   u'newcomer',
   u'portrayal',
   u'faith',
   u'calm',
   u'debate',
   u'science',
   u'religion'],
  [u'convert']],
 [[u'minute', u'music'],
  [u'movie', u'thriller', u'masterpiece', u'consideration'],
  [u'cinematography'],
  [u'opening',
   u'quantity',
   u'stunning',
   u'visual',
   u'clue',
   u'excellence',
   u'movie'],
  [u'storyline', u'twist', u'film', u'climax'],
  [u'film', u'compromise', u'religion', u'plenty', u'head'],
  [u'science', u'religion', u'religion', u'science']],
 [[u'adaptation', u'breath', u'book'],
  [u'movie'],
  [u'story', u'result'],
  [u'movie', u'end', u'thing'],
  [u'effect', u'sound', u'track'],
  [u'acting', u'character', u'development', u'phase'],
  [u'point', u'view', u'stuff', u'book', u'scene'],
  [u'book', u'puzzle', u'story', u'portrait'],
  [u'rush', u'time', u'way', u'problem', u'movie']],
 [[u'matter', u'movie'], [u'close']],
 [[u'mystery',
   u'science',
   u'experiment',
   u'blow',
   u'city.<br',
   u'record',
   u'majority',
   u'follower',
   u'award',
   u'winning',
   u'book',
   u'justice',
   u'half',
   u'hour',
   u'many.<br',
   u'book',
   u'attempt',
   u'mystery',
   u'murder',
   u'demon',
   u'scale',
   u'star',
   u'director',
   u'return.<br',
   u'person',
   u'demon',
   u'code',
   u'entertaining',
   u'read',
   u'critique',
   u'fan',
   u'adaptation',
   u'release.<br',
   u'picture',
   u'energy',
   u'exercise',
   u'night',
   u'activity',
   u'time',
   u'limitation',
   u'action',
   u'desperation',
   u'ante',
   u'excitement',
   u'code',
   u'plenty',
   u'twist',
   u'murder',
   u'sequences.<br',
   u'factor',
   u'release',
   u'element',
   u'murder'],
  [u'water',
   u'sequence',
   u'feeling',
   u'power',
   u'situation.<br',
   u'tag',
   u'thriller',
   u'tension',
   u'drama',
   u'issue',
   u'belief',
   u'working',
   u'over.<br',
   u'year',
   u'debate',
   u'discovery',
   u'symbol',
   u'character',
   u'light',
   u'controversy',
   u'pressing',
   u'circumstances.<br',
   u'writer',
   u'issue',
   u'dramas',
   u'action',
   u'sequence'],
  [u'scenario',
   u'election',
   u'pope',
   u'dealing',
   u'experiment',
   u'power',
   u'religion'],
  [u'debate',
   u'dialogue',
   u'tend',
   u'mind',
   u'novel',
   u'type',
   u'direction',
   u'return',
   u'way'],
  [u'camera', u'styling', u'pressure', u'screen', u'thank', u'style']],
 [[u'expert', u'book', u'deal', u'change', u'book', u'movie'],
  [u'movie', u'code'],
  [u'thing', u'movie', u'pace'],
  [u'feel', u'movie', u'company.<br', u'thing', u'book', u'movie', u'form'],
  [u'spoiler', u'movie', u'way'],
  [u'movie.<br', u'film', u'shot'],
  [u'walking', u'tour', u'day', u'movie', u'site', u'look', u'feel'],
  [u'job', u'scene', u'archive'],
  [u'course', u'access', u'area', u'archive'],
  [u'movie', u'job', u'eye', u'candy', u'movie', u'critic', u'public']],
 [[u'plenty', u'twist'],
  [u'demon'],
  [u'demon', u'style', u'film'],
  [u'seat', u'hour', u'bit.<br', u'movie', u'history'],
  [u'thing', u'movie', u'plot', u'spoiler'],
  [u'thing']],
 [[u'opinion', u'role'],
  [u'action', u'suspense', u'controversy'],
  [u'book', u'worry'],
  [u'book', u'let', u'scene', u'to.<br', u'film', u'movie', u'goer'],
  [u'fan']],
 [[u'code',
   u'knack',
   u'puzzle',
   u'demon',
   u'ante',
   u'puzzle',
   u'hour',
   u'limit.<br',
   u'cast',
   u'award',
   u'winning',
   u'actor',
   u'job',
   u'story'],
  [u'code', u'angle', u'time', u'bathroom', u'break', u'bit', u'return'],
  [u'demon',
   u'plot',
   u'action',
   u'level',
   u'throughout.<br',
   u'character',
   u'movie'],
  [u'portrayal', u'rank', u'victim', u'treatment', u'introduction'],
  [u'time',
   u'film',
   u'story',
   u'character',
   u'development',
   u'introduction',
   u'movie.<br',
   u'character',
   u'assistant',
   u'quest',
   u'line',
   u'bit',
   u'afterthought'],
  [u'role',
   u'thing',
   u'fade',
   u'background',
   u'more-so',
   u'partner.<br',
   u'plot',
   u'organization',
   u'revenge',
   u'manner'],
  [u'man', u'church', u'time', u'end', u'church'],
  [u'clue',
   u'team',
   u'scientist',
   u'colleague',
   u'die',
   u'hand',
   u'church',
   u'enemy.<br',
   u'cinematography',
   u'thing',
   u'demon',
   u'work',
   u'conclusion'],
  [u'ending', u'movie', u'off-guard'],
  [u'movie', u'bow'],
  [u'theater', u'movie', u'movie', u'principle'],
  [u'code', u'cover-up', u'group', u'sadist', u'demon', u'paint', u'brush'],
  [u'church', u'man', u'sin', u'evil', u'man', u'color', u'rank']],
 [[u'preview',
   u'today',
   u'demon',
   u'mind',
   u'uncertainty',
   u'hatred',
   u'fact',
   u'poster'],
  [u'mind',
   u'half',
   u'hour',
   u'cat',
   u'mouse',
   u'game',
   u'entertainment',
   u'value.<br',
   u'movie',
   u'novel'],
  [u'symbologist', u'jet', u'death', u're-election'],
  [u'threat',
   u'brotherhood',
   u'presence',
   u'time',
   u'bomb',
   u'kidnapping',
   u'cardinal'],
  [u'intellect', u'trust', u'task', u'finding'],
  [u'quest', u'scientist', u'co-creator', u'anti-matter'],
  [u'<br', u'movie', u'pace'],
  [u'minute',
   u'minute',
   u'bore',
   u'information',
   u'object',
   u'book',
   u'anticipated',
   u'action',
   u'sequence'],
  [u'read', u'paper', u'screen', u'way'],
  [u'<br', u'character', u'screen'],
  [u'performance', u'accent'],
  [u'performance'],
  [u'leader'],
  [u'performance', u'story', u'asset'],
  [u'<br',
   u'demon',
   u'movie',
   u'explosion',
   u'recreation',
   u'church',
   u'bomb',
   u'midnight',
   u'hour'],
  [u'job', u'adventure', u'time', u'criticism', u'dialogue', u'chase'],
  [u'<br', u'newcomer', u'threat', u'suspense', u'eye-candy', u'shot'],
  [u'fan',
   u'book',
   u'movie',
   u'change',
   u'blasphemy',
   u'inaccuracy',
   u'viewer',
   u'screen',
   u'time',
   u'shoulder'],
  [u'<br', u'book-to-movie', u'adaption', u'entertain.<br']],
 [[u'return',
   u'symbologist',
   u'adventure',
   u'demon',
   u'subject',
   u'nerve',
   u'faith'],
  [u'arm', u'film'],
  [u'action',
   u'piece',
   u'tourism',
   u'video',
   u'visitor',
   u'number',
   u'scene',
   u'model',
   u'used.<br',
   u'bulk',
   u'budget',
   u'set',
   u'ensemble',
   u'cast'],
  [u'void',
   u'character',
   u'lot',
   u'stake',
   u'film',
   u'scientist',
   u'lot',
   u'wing',
   u'battery',
   u'canister',
   u'anti-matter'],
  [u'book',
   u'fodder',
   u'course',
   u'knowledge',
   u'feud',
   u'love',
   u'equal.<br',
   u'hand',
   u'chew',
   u'scene',
   u'care',
   u'office',
   u'cardinal'],
  [u'surprise',
   u'reader',
   u'novel',
   u'performance',
   u'highlight',
   u'film',
   u'book',
   u'content',
   u'lot',
   u'plot',
   u'point',
   u'science',
   u'versus',
   u'religion',
   u'wealth',
   u'information',
   u'piece',
   u'work'],
  [u'book', u'year', u'film', u'lapse', u'set', u'action', u'piece'],
  [u'film', u'pace', u'breather'],
  [u'film',
   u'character',
   u'discussion',
   u'time',
   u'cup',
   u'tea',
   u'thing',
   u'book',
   u'page',
   u'page',
   u'action.<br',
   u'reviewer',
   u'demon',
   u'controversy',
   u'nerve',
   u'centre',
   u'faith'],
  [u'film',
   u'tourism',
   u'video',
   u'showcase',
   u'touristy',
   u'landmark',
   u'world',
   u'visit'],
  [u'area',
   u'catacomb',
   u'archive',
   u'bound',
   u'walk',
   u'book',
   u'film',
   u'novel',
   u'bit',
   u'significance',
   u'landmark',
   u'character',
   u'plot'],
  [u'entertainment']],
 [[u'teenager', u'spending', u'vacation', u'friend'],
  [u'suicide', u'crush'],
  [u'way', u'werewolf', u'eating', u'heart'],
  [u'movie', u'humor', u'movie'],
  [u'effect', u'soundtrack', u'song', u'band'],
  [u'story', u'teenager', u'werewolf', u'city'],
  [u'fan', u'werewolf', u'humor', u'movie'],
  [u'vote']],
 [[u'movie',
   u'romance',
   u'suspense',
   u'horror',
   u'stuff',
   u'half',
   u'movie',
   u'guy',
   u'girl',
   u'bungee'],
  [u'cemetery', u'scene', u'chill', u'wall'],
  [u'scene', u'seat'],
  [u'friend', u'girl', u'cemetery', u'lead', u'character(sorry'],
  [u'actor', u'job', u'make-up', u'crew'],
  [u'church', u'person', u'church', u'house'],
  [u'movie', u'time'],
  [u'person', u'movie', u'try']],
 [[u'movie', u'think', u'it`s'],
  [u'that`s', u'person', u'movie.<br', u'fx', u'mind', u'movie'],
  [u'opinion',
   u'guy',
   u'movie',
   u'sexiness',
   u'movie.<br',
   u'lot',
   u'wisecrack',
   u'movie'],
  [u'movie', u'collection'],
  [u'movie',
   u'horror',
   u'movie',
   u'driller',
   u'killer',
   u'suspirium',
   u'dario',
   u'movie',
   u'film',
   u'collection',
   u'werewolf',
   u'movie',
   u'i`ll',
   u'point'],
  [u'complaint', u'movie', u'movie', u'movie', u'there.<br']],
 [[u'movie'],
  [u'movie', u'time'],
  [u'movie'],
  [u'movie', u'ad', u'comedys'],
  [u'movie', u'switching', u'stuff', u'barrier'],
  [u'thought', u'movie', u'way', u'thinking'],
  [u'movie', u'twist', u'touch'],
  [u'movie', u'<br']],
 [[u'advance',
   u'screening',
   u'movie',
   u'thinking',
   u'minute',
   u'line',
   u'plot',
   u'kind',
   u'postman',
   u'display',
   u'blundering',
   u'time'],
  [u'depth', u'emotion'],
  [u'effect'],
  [u'actor', u'film', u'attitude', u'thought', u'film', u'year'],
  [u'movie'],
  [u'epic', u'commentary', u'film'],
  [u'story', u'topic', u'way', u'audience', u'level', u'empathy'],
  [u'work']],
 [[u'movie', u'entertaining'],
  [u'transformation', u'sequence', u'effect', u'scene', u'effect'],
  [u'transformation',
   u'lot',
   u'werewolf',
   u'transformation',
   u'movie',
   u'werewolf',
   u'dog'],
  [u'<br', u'grade']],
 [[u'attempt', u'time', u'movie', u'right'],
  [u'film', u'remake', u'movie', u'well.<br', u'similarity', u'backpacker'],
  [u'thing', u'stand', u'blend', u'humor', u'horror'],
  [u'person', u'film', u'youth', u'today', u'generation', u'movie', u'crap'],
  [u'film', u'horror', u'film', u'today'],
  [u'lot', u'person', u'film', u'horror', u'today'],
  [u'path', u'<br', u'attempt', u're-creating'],
  [u'film'],
  [u'attempt']],
 [[u'feature', u'night'],
  [u'year',
   u'transformation',
   u'sequence',
   u'standard',
   u'film',
   u'bit',
   u'scar',
   u'lot',
   u'laugh',
   u'fashion',
   u'day',
   u'film',
   u'sense',
   u'time',
   u'transformation',
   u'technology',
   u'time'],
  [u'movie',
   u'lot',
   u'performance',
   u'liking',
   u'figure',
   u'direction',
   u'script',
   u'bit',
   u'shine',
   u'finesse'],
  [u'movie'],
  [u'discussion', u'sequel', u'title', u'dc', u'fun', u'dog', u'scare'],
  [u'transfer', u'dolby', u'sound', u'upconvert']],
 [[u'character', u'movie', u'return', u'movie'],
  [u'sequel', u'werewolf', u'horror', u'movie'],
  [u'werewolf', u'film', u'time'],
  [u'relationship', u'nightmare', u'secret', u'city', u'<br', u'film'],
  [u'chemistry'],
  [u'thumb'],
  [u'<br', u'effect', u'werewolf'],
  [u'humor', u'movie'],
  [u'scene', u'time.<br', u'werewolf', u'sequel', u'predecessor', u'movie'],
  [u'fan', u'werewolf']],
 [[u'lad', u'way', u'stunt', u'babe', u'love'],
  [u'bungee-jump', u'attempt'],
  [u'attempt',
   u'girl',
   u'secret',
   u'friend',
   u'adventure',
   u'action',
   u'romance',
   u'humor'],
  [u'film', u'number', u'time', u'experience', u'film', u'sequel']],
 [[u'emotion', u'film', u'forerunner,<br'],
  [u'film', u'moment', u'horror', u'tale'],
  [u'version', u'edge', u'class', u'thing', u'film', u'fun'],
  [u'<br', u'werewolf', u'purist', u'film', u'garbage', u'version', u'mark'],
  [u'version'],
  [u'<br',
   u'minute',
   u'movie',
   u'laughs',
   u'scene',
   u'balloon',
   u'restaurant'],
  [u'character'],
  [u'actress',
   u'face',
   u'beauty',
   u'film',
   u'point',
   u'horror',
   u'start',
   u'effect'],
  [u'lack',
   u'profanity',
   u'film',
   u'f-word',
   u'plenty',
   u'remark',
   u'scene',
   u'guy',
   u'bar',
   u'cross'],
  [u'soundtrack', u'metal', u'guy']],
 [[u'film', u'year'],
  [u'driver'],
  [u'don\xb4t', u'opportunity', u'film', u'fall', u'love']],
 [[u'way', u'comedy', u'future', u'return'],
  [u'plot', u'secret', u'publicity'],
  [u'world', u'chemistry', u'guy', u'laugh', u'time']],
 [[u'score', u'coup', u'debut'],
  [u'chemistry'],
  [u'plot', u'film'],
  [u'job', u'grace', u'grandfather'],
  [u'character', u'actor', u'card', u'buddy'],
  [u'husband', u'family.<br', u'family', u'marriage'],
  [u'reference',
   u'word',
   u'context',
   u'humor.<br',
   u'background',
   u'tune',
   u'return']],
 [[u'fan', u'person', u'expectation', u'movie'],
  [u'flaw', u'number', u'chemistry'],
  [u'movie', u'actor'],
  [u'past', u'flaw', u'comedy'],
  [u'scenario', u'heaven'],
  [u'movie.<br']],
 [[u'man', u'restaurant', u'film', u'fun'], [u'actress', u'screen']],
 [[u'movie', u'kind'],
  [u'premise',
   u'character',
   u'attention',
   u'right',
   u'beginning',
   u'affection',
   u'too.<br',
   u'job',
   u'debut',
   u'job',
   u'writing'],
  [u'movie']],
 [[u'romance', u'movie', u'couple', u'appreciation'], [u'goof', u'movie']],
 [[u'fan',
   u'life',
   u'character',
   u'job',
   u'debut.<br',
   u'chick',
   u'flick',
   u'mind',
   u'story',
   u'touch',
   u'emotion',
   u'sort',
   u'reactions.<br',
   u'film',
   u'life',
   u'person',
   u'life',
   u'situation'],
  [u'coincidence',
   u'film)<br',
   u'love',
   u'story',
   u'man',
   u'woman',
   u'love',
   u'family',
   u'friend']],
 [[u'film', u'entertaining'],
  [u'performance', u'man'],
  [u'folk', u'connection', u'heart']],
 [[u'reviews', u'return', u'opinion', u'movie'],
  [u'need', u'admiration', u'movie'],
  [u'actress', u'director', u'script', u'writer'],
  [u'movie', u'humanity', u'tenderness', u'sense', u'humor'],
  [u'review', u'attention'],
  [u'return', u'gem', u'movie']],
 [[u'movie'],
  [u'actor', u'opportunity', u'role', u'movie'],
  [u'society', u'wealth', u'health', u'youth', u'movie', u'person'],
  [u'moment', u'male', u'brain'],
  [u'leg', u'link', u'reality'],
  [u'scene', u'hunting', u'bike']],
 [[u'movie', u'sweetness', u'person'],
  [u'premise', u'suspension', u'disbelief', u'trouble']],
 [[u'couple'],
  [u'lot', u'couple', u'sleepless'],
  [u'movie'],
  [u'job'],
  [u'line', u'crack', u'spoiler', u'love'],
  [u'ape',
   u'hand',
   u'thing',
   u'grace',
   u'example',
   u'too.<br',
   u'spoiler',
   u'end',
   u'thing',
   u'movie'],
  [u'man', u'wife', u'year', u'woman', u'life'],
  [u'date', u'year', u'love', u'woman', u'life', u'connection', u'movie'],
  [u'time', u'time', u'scene', u'restaurant', u'date', u'water'],
  [u'romantic-comedy', u'door', u'rent']],
 [[u'return', u'gem', u'movie'],
  [u'star', u'cast', u'day', u'tale'],
  [u'joke', u'girl', u'film'],
  [u'approach', u'everday', u'alter-ego', u'mulder', u'x-file'],
  [u'date', u'movie']],
 [[u'movie', u'fun', u'today'],
  [u'movie', u'person', u'tv', u'sit-com'],
  [u'situation', u'story', u'movie'],
  [u'fake', u'editing'],
  [u'video']],
 [[u'movie', u'pretense', u'art'],
  [u'script', u'character', u'acting'],
  [u'drama', u'wife', u'story', u'character'],
  [u'attempt',
   u'quality',
   u'writing',
   u'drama',
   u'adult',
   u'movie',
   u'type',
   u'drama'],
  [u'offering']],
 [[u'woman', u'list', u'heart', u'transplant'],
  [u'year', u'person', u'life'],
  [u'friend', u'date', u'waitress', u'restaurant', u'date'],
  [u'movie', u'comedy'],
  [u'star', u'couple', u'heaven'],
  [u'place', u'neighborhood', u'setting'],
  [u'love', u'story', u'grace', u'movie']],
 [[u'chemistry', u'layer', u'clothing'],
  [u'notch'],
  [u'poetry'],
  [u'team', u'film', u'moment', u'screen']],
 [[u'movie'],
  [u'combination', u'talent'],
  [u'fan', u'movie'],
  [u'talent', u'fan', u'series'],
  [u'love', u'story'],
  [u'cast'],
  [u'job'],
  [u'way', u'soundtrack']],
 [[u'hand',
   u'comedy',
   u'film',
   u'heart',
   u'transplant',
   u'patient',
   u'connection',
   u'wife'],
  [u'film',
   u'story',
   u'line',
   u'movie',
   u'film',
   u'keeper.<br',
   u'scene',
   u'dog',
   u'dog',
   u'wife'],
  [u'friend', u'replacement', u'scene', u'date', u'waitress'],
  [u'date', u'role', u'grandfather'],
  [u'film',
   u'round',
   u'comedy',
   u'aspect',
   u'film.<br',
   u'film',
   u'story',
   u'work',
   u'audience',
   u'intelligence']],
 [[u'film', u'pantheon', u'comedy'], [u'cast', u'character']],
 [[u'summer',
   u'blockbuster',
   u'season',
   u'film',
   u'bit',
   u'shadow',
   u'dollar',
   u'effect',
   u'movie',
   u'story',
   u'core',
   u'number',
   u'picture',
   u'actress'],
  [u'story',
   u'comedy',
   u'life',
   u'performance',
   u'veteran',
   u'shot',
   u'breaking',
   u'mold'],
  [u'film', u'work', u'thing'],
  [u'role', u'lead', u'grace', u'family', u'friend'],
  [u'stitch', u'stable', u'force'],
  [u'film',
   u'performance',
   u'actor',
   u'calibre',
   u'finale',
   u'career.<br',
   u'return',
   u'fun',
   u'story',
   u'film',
   u'favorite']],
 [[u'film', u'theater'],
  [u'job', u'screenplay', u'commentary'],
  [u'job', u'character'],
  [u'film',
   u'job',
   u'importance',
   u'family',
   u'rarity',
   u'film',
   u'today',
   u'reflection',
   u'director',
   u'comment'],
  [u'life', u'performance', u'scene'],
  [u'movie'],
  [u'creator', u'film'],
  [u'piece', u'viewing', u'friend'],
  [u'lot', u'movie', u'year', u'feeling', u'satisfaction', u'film']],
 [[u'casting', u'respect'],
  [u'laugh', u'scenario'],
  [u'weekend'],
  [u'heart'],
  [u'honey', u'sip', u'cup', u'chocolate', u'enjoy', u'presence'],
  [u'family', u'expression', u'way']],
 [[u'movie', u'yesterday', u'intern', u'office', u'day'],
  [u'plot', u'way', u'dog', u'door'],
  [u'dog',
   u'folk',
   u'restaurant',
   u'person',
   u'group',
   u'topic',
   u'discussion'],
  [u'wedding', u'end.<br', u'movie', u'award']],
 [[u'star',
   u'film',
   u'comedy',
   u'man',
   u'time',
   u'dream',
   u'adventure',
   u'body'],
  [u'version', u'protagonist', u'quarterback', u'then-los'],
  [u'version', u'lead', u'character', u'comedian.<br', u'comedian'],
  [u'kind', u'actor'],
  [u'dream', u'night'],
  [u'joke', u'delivery'],
  [u'bike', u'messenger', u'street', u'way', u'material'],
  [u'body', u'tenth', u'angel'],
  [u'manager', u'body'],
  [u'trouble', u'body', u'man'],
  [u'fella', u'kind', u'thing', u'man', u'country'],
  [u'<br', u'course', u'body', u'hospital', u'worker'],
  [u'male', u'female', u'body', u'guy'],
  [u'<br', u'shot', u'role', u'opinion'],
  [u'lot', u'comedian', u'course', u'role', u'routine', u'script', u'thing'],
  [u'lot', u'fun', u'role', u'bent', u'fun']],
 [[u'love', u'story', u'character', u'romance'],
  [u'storyline', u'tear', u'moment'],
  [u'relationship'],
  [u'hit?<br'],
  [u'film']],
 [[u'story', u'cast'],
  [u'boyfriend', u'wife', u'death', u'wife', u'heart', u'scream'],
  [u'matter', u'thought'],
  [u'love', u'destiny', u'all.(sigh)<br', u'timing', u'scene'],
  [u'pair']],
 [[u'job', u'co-writing', u'co-starring', u'film'],
  [u'talent', u'movie'],
  [u'director', u'commentary']],
 [[u'daughter', u'age', u'screening', u'movie', u'night'],
  [u'entertaining', u'movie'],
  [u'male', u'lead', u'performance'],
  [u'scene', u'laugh', u'scene', u'transplant', u'donee']],
 [[u'trailer', u'film', u'film'],
  [u'box', u'office', u'guru', u'stretch', u'gut'],
  [u'case', u'apathy'],
  [u'way', u'person', u'interview', u'actor'],
  [u'film', u'reason', u'buck', u'screen'],
  [u'thing', u'man', u'return', u'heart', u'place'],
  [u'story', u'class', u'grace'],
  [u'film',
   u'bit',
   u'premise',
   u'chance',
   u'pain',
   u'reason',
   u'film',
   u'story',
   u'cast'],
  [u'duchovney'],
  [u'scene', u'home', u'wife', u'floor', u'house'],
  [u'dog'],
  [u'moment', u'pain', u'character', u'movie'],
  [u'pain', u'moment', u'actor', u'loss'],
  [u'stuff.<br', u'strength', u'film'],
  [u'pot', u'character', u'share', u'bond'],
  [u'share', u'pub'],
  [u'scale', u'culture'],
  [u'man', u'homeland', u'granddaughter', u'niece'],
  [u'scenario',
   u'comedy',
   u'here.<br',
   u'share',
   u'moment',
   u'middle',
   u'couple',
   u'point',
   u'humility',
   u'keg',
   u'stomach',
   u'laugh'],
  [u'family', u'kid', u'time', u'wife', u'quality', u'time'],
  [u'elegance'],
  [u'<br', u'story', u'love', u'love', u'power', u'friendship', u'family'],
  [u'return', u'romance', u'admiration', u'role', u'picture', u'character'],
  [u'movie', u'flavour.<br', u'sucker', u'romance', u'film']],
 [[u'time', u'love'],
  [u'grief', u'scene'],
  [u'line', u'ache', u'grace'],
  [u'area', u'couple'],
  [u'week'],
  [u'day']],
 [[u'story',
   u'intervention',
   u'man',
   u'wife',
   u'accident',
   u'woman',
   u'wife',
   u'heart'],
  [u'performance', u'to-be-lover', u'chance'],
  [u'story', u'friend', u'family', u'time', u'trial'],
  [u'grandfather', u'scene'],
  [u'friend', u'wit', u'encouragement', u'sister', u'scene', u'husband'],
  [u'scene', u'writing', u'story'],
  [u'movie', u'family', u'friend', u'person', u'time']],
 [[u'boyfriend', u'movie', u'movie', u'more.not', u'movie'],
  [u'movie', u'job', u'is.i'],
  [u'movie'],
  [u'storyline', u'thumb']],
 [[u'action',
   u'movie',
   u'fan',
   u'today',
   u'preview',
   u'ad',
   u'movie',
   u'goodnight',
   u'pay-tv',
   u'special.<br',
   u'surprise'],
  [u'movie'],
  [u'problem',
   u'presence',
   u'hole',
   u'plot',
   u'rest',
   u'entertaining',
   u'action',
   u'movie',
   u'transformation',
   u'wife-teacher',
   u'agent',
   u'amnesia',
   u'idea'],
  [u'action', u'scene', u'stunt'],
  [u'line', u'chemistry'],
  [u'action',
   u'heroine',
   u'stunts.<br',
   u'movie',
   u'performance',
   u'box',
   u'office',
   u'critic',
   u'reviewer',
   u'kind',
   u'public',
   u'time',
   u'female',
   u'lead',
   u'roles.<br']],
 [[u'action', u'film'],
  [u'portrayal', u'nail', u"charly'", u'mother', u'way', u'liner'],
  [u'sure',
   u'hole',
   u'story',
   u'flick',
   u'edge',
   u'seat',
   u'end.<br',
   u'choice',
   u'role',
   u'versatility',
   u'actress',
   u'role',
   u'mother',
   u'movie'],
  [u'yvonne', u'newcomer'],
  [u'film',
   u'trend',
   u'character',
   u'diversion',
   u'male',
   u'stereotype',
   u'disaster',
   u'next.<br',
   u'movie',
   u'person'],
  [u'film', u'action', u'fan', u'scene', u'action']],
 [[u'bin', u'knowledge', u'fan', u'crime', u'movie'],
  [u'fun', u'entertaining', u'movie', u'performance'],
  [u'movie', u'course', u'performance', u'standout', u'film'],
  [u'pacino', u'performance', u'gangster', u'city'],
  [u'damsel', u'distress', u'depth', u'performance'],
  [u'attitude', u'fun', u'movie', u'acting', u'script', u'try']],
 [[u'movie', u'watch'],
  [u'movie.<br',
   u'actor',
   u'story',
   u'action',
   u'scene',
   u'goodnight',
   u'<br',
   u'star']],
 [[u'<br',
   u'example',
   u'affliction',
   u'film',
   u'concept',
   u'assassin',
   u'memory',
   u'consciousness',
   u'setup',
   u'writer',
   u'thing',
   u'path',
   u'taste',
   u'lot'],
  [u'baddy', u'sidekick', u'turn', u'pre-pulp', u'day', u'effort', u'wife'],
  [u'character',
   u'film',
   u'fact',
   u'it.<br',
   u'film',
   u'hollywood',
   u'actioner'],
  [u'finger', u'cold', u'edge', u'feel', u'air', u'streak', u'way'],
  [u'photography',
   u'night',
   u'character',
   u'dream',
   u'mirror',
   u'eye',
   u'man',
   u'nemesis',
   u'daughter',
   u'comeback',
   u'wheel',
   u'car',
   u'blood',
   u'mouth',
   u'atmosphere',
   u'bit',
   u'film']],
 [[u'cinema', u'experience', u'thriller', u'sense', u'humor'],
  [u'rent', u'eye', u'past', u'way', u'head'],
  [u'line', u'interaction', u'tv', u'image']],
 [[u'movie', u'appreciation', u'vote'],
  [u'action',
   u'fine',
   u'script',
   u'actor',
   u'chemistry',
   u'director',
   u'director',
   u'film'],
  [u'rollercoaster-ride', u'status'],
  [u'film',
   u'action',
   u'buddyism',
   u'sidekick',
   u'lot',
   u'room',
   u'share',
   u'action',
   u'killer',
   u'wisecrack'],
  [u'movie', u'level', u'theme', u'plot'],
  [u'quiet', u'night']],
 [[u'comedy', u'action', u'stunts'],
  [u'time'],
  [u'moment'],
  [u'bridge', u'explosion', u'sound', u'truck', u'sound'],
  [u'dvd', u'audio'],
  [u'moment', u'guy', u'daughter', u'film', u'action', u'fan', u'publicity']],
 [[u'pair', u'screen'],
  [u'action',
   u'movie',
   u'twist',
   u'ending',
   u'audience',
   u'filmmaker',
   u'movies.<br']],
 [[u'time', u'action', u'screenwriter'],
  [u'stardom'],
  [u'movie', u'bit', u'fan', u'action', u'film', u'thrill']],
 [[u'sure', u'movie'],
  [u'hole', u'plot', u'action'],
  [u'movie', u'flaw', u'virtue'],
  [u'movie', u'maker', u'undertaking', u'movie'],
  [u'movie'],
  [u'preposterousness', u'movie', u'screenplay'],
  [u'light', u'event'],
  [u'movie', u'tradegy', u'collapse', u'way', u'movie', u'events.<br']],
 [[u'movie', u'play', u'role', u'movie'],
  [u'line', u'action'],
  [u'kiddy', u'movie', u'size']],
 [[u'action', u'fan', u'screenplay', u'guy', u'action', u'set', u'piece'],
  [u'action', u'movie']],
 [[u'end', u'epic', u'founding', u'eye', u'iconoclast'],
  [u'film', u'entertaining', u'message', u'star'],
  [u'end',
   u'decade',
   u'kind',
   u'epic',
   u'pretense',
   u'entertainment',
   u'bunch',
   u'actor',
   u'time',
   u'ton',
   u'makeup.<br',
   u'individual',
   u'volume',
   u'range',
   u'man',
   u'player'],
  [u'film',
   u'cartoon',
   u'character',
   u'strip',
   u'screenplay.<br',
   u'city',
   u'mobster',
   u'boy',
   u'competition'],
  [u'target', u'meantime', u'individual'],
  [u'hero', u'sort', u'thicket', u'crime?<br', u'spirit', u'fun', u'film'],
  [u'person',
   u'cartoon',
   u'creation',
   u'strip',
   u'author',
   u'exercise',
   u'slice',
   u'ham',
   u'film.<br',
   u'nomination',
   u'guy',
   u'pacino',
   u'boy',
   u'screen',
   u'time'],
  [u'fact', u'somebody', u'score', u'film', u'fun'],
  [u'heavyweight',
   u'club',
   u'torch',
   u'singer',
   u'film',
   u'movie',
   u'picture',
   u'afternoon',
   u'serial'],
  [u'recording', u'gem.<br', u'strip', u'screen']],
 [[u'way', u'samantha', u'spy', u'year'],
  [u'plot', u'story', u'job', u'fiddle', u'job'],
  [u'explosion', u'action', u'scene', u'scene'],
  [u'kid', u'nerve', u'end', u'watch', u'car'],
  [u'kid', u'film', u'movie', u'kid', u'film'],
  [u'movie', u'box', u'office', u'man', u'movie'],
  [u'year',
   u'person',
   u'movie',
   u'mark',
   u'average',
   u'film',
   u'site',
   u'year'],
  [u'hope', u'action', u'film']],
 [[u'movie', u'character', u'type', u'control', u'control', u'ride'],
  [u'timing', u'line', u'point', u'movie'],
  [u'preformance', u'samantha'],
  [u'action', u'hero', u'actress'],
  [u'action', u'movie'],
  [u'effect', u'year'],
  [u'screen', u'stuff', u'acting.<br'],
  [u'drama', u'person', u'movie', u'time'],
  [u'half', u'half'],
  [u'weather', u'tank'],
  [u'thing'],
  [u'sign', u'room', u'land', u'tree'],
  [u'fun', u'movie']],
 [[u'action', u'flick'],
  [u'role'],
  [u'actress'],
  [u'movie'],
  [u'way', u'woman', u'character', u'fun'],
  [u'film'],
  [u'duo']],
 [[u'story', u'theme', u'susie'],
  [u'beginning', u'direction'],
  [u'pace', u'action', u'fun', u'story', u'lot', u'explosion', u'mayhem']],
 [[u'assassin', u'identity', u'schoolteacher', u'family', u'life', u'town'],
  [u'employer'],
  [u'guy'],
  [u'mother', u'family', u'life'],
  [u'guy', u'daughter'],
  [u'action', u'scene', u'movie']],
 [[u'scene', u'film', u'punch'],
  [u'place', u'train', u'station', u'protagonist', u'assassin', u'weapon'],
  [u'hall', u'train', u'station', u'corpse', u'person', u'crossfire'],
  [u'action', u'flick'],
  [u'action', u'movie', u'violence', u'plot', u'element'],
  [u'spite', u'shootout', u'person'],
  [u'violence', u'guy', u'guy', u'guy'],
  [u'bit', u'sense', u'hint', u'hit'],
  [u'scene', u'scene', u'cargo', u'plane', u'person', u'scenario'],
  [u'edge'],
  [u'violence'],
  [u'liner',
   u'style',
   u'echo',
   u'sarcasm',
   u'film',
   u'wisecrack',
   u'moment',
   u'action'],
  [u'plot', u'intent', u'action', u'film'],
  [u'villain', u'revenge', u'grab', u'power'],
  [u'film',
   u'trilogy',
   u'action',
   u'film',
   u'style',
   u'film',
   u'year',
   u'screen.<br',
   u'aspect',
   u'hero',
   u'heroine'],
  [u'heroine', u'cigarette'],
  [u'movie', u'action-heroine', u'role', u'hit'],
  [u'set', u'piece', u'action', u'film'],
  [u'explosion',
   u'chemical',
   u'bomb',
   u'display',
   u'movie',
   u'pyrotechnic',
   u'law',
   u'physics',
   u'break'],
  [u'formula', u'formula']],
 [[u'movie', u'trash', u'action', u'film'],
  [u'action', u'sequence', u'film'],
  [u'performance', u'shame', u'sequel'],
  [u'sidekick', u'luck', u'eye', u'buck'],
  [u'thrill'],
  [u'mind', u'film', u'action', u'flick', u'fortune', u'script'],
  [u'time', u'selling', u'screenplay', u'worth', u'penny'],
  [u'audience', u'movie', u'chance', u'cause', u'film'],
  [u'live', u'goodnight']],
 [[u'year',
   u'female',
   u'movie',
   u'character',
   u'ass',
   u'understatement',
   u'job',
   u'movie.<br',
   u'action',
   u'movie',
   u'entertaining.<br',
   u'alter-ego',
   u'rifle',
   u'hotel',
   u'room',
   u'chill',
   u'movie',
   u'<br',
   u'role',
   u'tattoed',
   u'girl',
   u'shhhhhhhhhhhhhh']],
 [[u'film', u'female', u'lot', u'butt', u'film', u'hope', u'entertainment'],
  [u'action', u'humor', u'wit', u'film', u'film', u'time'],
  [u'screen', u'presence', u'respect', u'it.<br', u'samantha'],
  [u'woman', u'body'],
  [u'guy', u'conscience.<br', u'film']],
 [[u'film', u'rampage', u'action', u'comedy', u'start'],
  [u'chemistry', u'role', u'excitement', u'anticipation', u'suspicion'],
  [u'effect'],
  [u'emotion']],
 [[u'year', u'movie'],
  [u'movie', u'person'],
  [u'<br', u'film', u'thank'],
  [u'writer', u'film'],
  [u'person', u'film', u'success'],
  [u'type', u'effect', u'essence', u'ship'],
  [u'film', u'sinking', u'ship', u'film', u'day'],
  [u'silverware', u'goodness'],
  [u'movie',
   u'person',
   u'hearing',
   u'word',
   u'form',
   u'advertisement',
   u'mind',
   u'good',
   u'worth',
   u'theater',
   u'drove',
   u'movie',
   u'time'],
  [u'movie', u'buildup'],
  [u'critic', u'money', u'film', u'budget', u'film'],
  [u'thing'],
  [u'story'],
  [u'actor', u'job'],
  [u'work', u'work', u'screen']],
 [[u'book', u'fan', u'blood'],
  [u'innocence', u'book', u'villain', u'appearance', u'disorder', u'fun'],
  [u'character', u'crime', u'power'],
  [u'child', u'atmosphere', u'color', u'red', u'orange', u'yellow'],
  [u'film', u'anybody', u'child'],
  [u'boy', u'zest'],
  [u'babe', u'villain', u'film', u'boy', u'toy']],
 [[u'person', u'film'],
  [u'standard', u'film', u'enjoyment', u'sake'],
  [u'enjoyment',
   u'act',
   u'film',
   u'reason',
   u'them?<br',
   u'action',
   u'film',
   u'sense',
   u'word'],
  [u'sure', u'hole', u'plot', u'semi', u'flow', u'film'],
  [u'fan', u'character'],
  [u'opinion',
   u'appearance',
   u'trick.<br',
   u'film',
   u'hand',
   u'character',
   u'villain'],
  [u'decision', u'approach', u'counterpoint', u'action', u'scene'],
  [u'actor',
   u'expression',
   u'point',
   u'case',
   u'scene',
   u'freezer',
   u'daughter'],
  [u'film',
   u'moment',
   u'revelation',
   u'dialogue',
   u'eye',
   u'story.<br',
   u'plot'],
  [u'housewife', u'amnesia', u'assassin'],
  [u'memory', u'return', u'person', u'assassin'],
  [u'bit'],
  [u'journey']],
 [[u'goodnight', u'action', u'thriller', u'career', u'breakthrough'],
  [u'plot'],
  [u'fight',
   u'scene',
   u'treat',
   u'eye',
   u'plotline',
   u'hours.<br',
   u'slick',
   u'sense',
   u'style',
   u'action',
   u'clich'],
  [u'action', u'chick', u'wife', u'role'],
  [u'player'],
  [u'film', u'baddie'],
  [u'<br', u'break', u'actioner', u'ground', u'actioner', u'year'],
  [u'fun', u'popcorn', u'entertainment']],
 [[u'review',
   u'reviews',
   u'movie',
   u'something.<br',
   u'plot',
   u'point',
   u'review'],
  [u'non-spoiler', u'version', u'review', u'butt', u'movie', u'lot', u'fun'],
  [u'action',
   u'heroine',
   u'torn',
   u'life',
   u'housewife',
   u'mother',
   u'memory',
   u'life'],
  [u'performance',
   u'facet',
   u'character',
   u'perfectly.<br',
   u'performance',
   u'character'],
  [u'job', u'sidekick', u'character'],
  [u'line', u'movie', u'movie', u'in.<br'],
  [u'story', u'lot', u'twist']],
 [[u'film', u'way', u'world'],
  [u'film', u'world', u'sense', u'world', u'logic'],
  [u'world',
   u'ability',
   u'love',
   u'hate',
   u'film.<br',
   u'film.<br',
   u'beginning',
   u'premise',
   u'woman',
   u'memory'],
  [u'film',
   u'film',
   u'hour',
   u'chase.<br',
   u'action',
   u'film',
   u'brain',
   u'thing',
   u'logic',
   u'attention',
   u'twist'],
  [u'deal', u'person', u'way'],
  [u'effort', u'reality', u'door']],
 [[u'schoolteacher', u'amnesia', u'government', u'assassin'],
  [u'man', u'detective', u'effect', u'one-liner'],
  [u'action', u'silly', u'time'],
  [u'movie', u'time?<br', u'fun', u'villain'],
  [u'movie', u'time'],
  [u'movie', u'fun', u'instead.<br', u'movie']],
 [[u'box', u'office', u'success'],
  [u'two-word',
   u'tough-guy',
   u'title',
   u'proportion',
   u'crowd',
   u'kiss',
   u'goodnight'],
  [u'action', u'movie'],
  [u'reason', u'fact', u'character', u'affection'],
  [u'guy', u'touch', u'order'],
  [u'charm', u'half', u'character'],
  [u'fiddle', u'change'],
  [u'compliment.<br', u'series', u'way']],
 [[u'<br',
   u'action',
   u'lot',
   u'dialogue',
   u'fun',
   u'intrigue',
   u'stuff',
   u'place'],
  [u'chemistry'],
  [u'fact',
   u'action',
   u'lead',
   u'turn-about.<br',
   u'movie',
   u'dozen',
   u'time',
   u'film',
   u'rotation',
   u'month'],
  [u'movie',
   u'film',
   u'event',
   u'quest',
   u'memory',
   u'back.<br',
   u'folk',
   u'disbelief']],
 [[u'action', u'movie'],
  [u'script', u'delivery', u'chemistry', u'principal', u'sequel'],
  [u'danger', u'checkerboard', u'scene', u'action', u'scene', u'scene'],
  [u'moment'],
  [u'<br', u'role', u'thing', u'character', u'career'],
  [u'hit-man', u'super-cool', u'soldier'],
  [u'schmuck',
   u'woman',
   u'odyssey',
   u'secret',
   u'story',
   u'character',
   u'amnesia',
   u'writer',
   u'director',
   u'condition',
   u'personality',
   u'disorder.<br',
   u'caine',
   u'identity',
   u'personality'],
  [u'trauma',
   u'half-hour',
   u'movie',
   u'personality',
   u'material',
   u'life',
   u'detective',
   u'facilitate',
   u'resurfacing'],
  [u'timing', u'target', u'samantha', u'herself.<br', u'personality'],
  [u'bit',
   u'dialogue',
   u'warrior',
   u'personality',
   u'father',
   u'year',
   u'psyche',
   u'samantha',
   u'identity',
   u'personality'],
  [u'mother',
   u'reunion',
   u'daughter',
   u'break',
   u'struggle',
   u'integration',
   u'movie',
   u'end.<br',
   u'quote',
   u'film:<br',
   u'sharpshooter?"<br',
   u'ass'],
  [u'sock',
   u'jaw',
   u'yell',
   u'pop',
   u'weasel\'".<br',
   u'couple',
   u'dozen',
   u'here.<br',
   u'action',
   u'hero',
   u'fact'],
  [u'<br'],
  [u'dozen', u'time'],
  [u'holiday', u'flick', u'shelf']],
 [[u'telecast',
   u'production',
   u'justice',
   u'aspect',
   u'version',
   u'production',
   u'design',
   u'wheeling',
   u'multi-set',
   u'trapdoor'],
  [u'staging', u'slashing.<br', u'performance', u'person'],
  [u'right', u'cue', u'time', u'song'],
  [u'fact', u'actress', u'degree'],
  [u'cockney', u'accent', u'bit'],
  [u'thing', u'performance', u'theatre', u'anthem', u'production']],
 [[u'case'],
  [u'version'],
  [u'character'],
  [u'performance'],
  [u'personality',
   u'story.<br',
   u'humor',
   u'song',
   u'expression',
   u'emotion',
   u'song',
   u'rage',
   u'vengeance',
   u'distress.<br',
   u'play',
   u'time']],
 [[u'book', u'hero'],
  [u'movie', u'set', u'cast', u'offshoot', u'script'],
  [u'term', u'action', u'plot'],
  [u'reason', u'movie', u'star', u'time', u'film'],
  [u'<br', u'person', u'job', u'film'],
  [u'belong', u'movie', u'job'],
  [u'dude'],
  [u'guy', u'guy'],
  [u'<br', u'film'],
  [u'thing'],
  [u'thing', u'movie'],
  [u'child', u'cool', u'movie', u'set', u'writing', u'cast', u'movie'],
  [u'<br', u'finale'],
  [u'scale', u'film', u'bang'],
  [u'movie', u'book', u'color', u'costume', u'makeup'],
  [u'makeup', u'villain'],
  [u'life', u'character'],
  [u'movie'],
  [u'book', u'adaptation', u'time'],
  [u'course', u'movie', u'term']],
 [[u'play',
   u'year',
   u'comfort',
   u'home',
   u'note',
   u'sofa',
   u'production',
   u'standing',
   u'ovation'],
  [u'bunch', u'performance', u'song'],
  [u'<br',
   u'play',
   u'subject',
   u'bit',
   u'praise',
   u'songs.<br',
   u'interplay',
   u'song']],
 [[u'demon', u'role'],
  [u'award',
   u'box',
   u'office',
   u'expectation',
   u'production',
   u'run',
   u'performance'],
  [u'result', u'capture', u'play', u'approximation', u'staging.<br', u'flaw'],
  [u'stage',
   u'play',
   u'film',
   u'performance',
   u'stage',
   u'theatre',
   u'film',
   u'performance'],
  [u'film',
   u'stand',
   u'quality',
   u'performance',
   u'sake',
   u'camera',
   u'case',
   u'larger-than-life',
   u'performance',
   u'film',
   u'voice',
   u'place',
   u'voice',
   u'cast.<br',
   u'stage-play-on-film',
   u'effect',
   u'consideration',
   u'performance',
   u'operetta',
   u'style'],
  [u'mixture',
   u'silliness',
   u'stupidity',
   u'malice',
   u'role',
   u'barber',
   u'client',
   u'grave'],
  [u'cast', u'film', u'set', u'display'],
  [u'work'],
  [u'story'],
  [u'myth',
   u'story',
   u'string',
   u'year',
   u'stage',
   u'sweeney',
   u'todd',
   u'demon',
   u'era',
   u'copyright',
   u'law',
   u'variation',
   u'play'],
  [u'barber', u'man', u'associate', u'py', u'public'],
  [u'version',
   u'version',
   u'story',
   u'lot',
   u'blood',
   u'body',
   u'chute',
   u'humor',
   u'time',
   u'music',
   u'lyric',
   u'subplot',
   u'clutch',
   u'open',
   u'charm'],
  [u'lyric',
   u'deal',
   u'satire',
   u'industry',
   u'capitalism',
   u'way',
   u'fault',
   u'complex',
   u'music.<br',
   u'concert',
   u'version',
   u'film',
   u'selection',
   u'film',
   u'version',
   u'tale',
   u'thread',
   u'play'],
  [u'opinion', u'film', u'comedy', u'favor', u'blood'],
  [u'case', u'fan', u'story', u'tour']],
 [[u'production', u'example', u'stage'],
  [u'transfer'],
  [u'course', u'music', u'lyric'],
  [u'set',
   u'plot',
   u'swift',
   u'scene',
   u'change',
   u'camera',
   u'action',
   u'fact',
   u'stage',
   u'production'],
  [u'platform', u'pie', u'shop', u'barber', u'shop', u'upstairs'],
  [u'gantry', u'stair', u'rest', u'action', u'place'],
  [u'tale',
   u'injustice',
   u'revenge',
   u'murder',
   u'mayhem',
   u'humour',
   u'moment'],
  [u'work', u'theatre', u'performance']],
 [[u'world', u'fan', u'album', u'time', u'movie', u'version'],
  [u'chance', u'movie'],
  [u'version', u'movie', u'play', u'member', u'cast', u'performance'],
  [u'job',
   u'voice',
   u'bit',
   u'broader.<br',
   u'problem',
   u'character',
   u'extent',
   u'lover'],
  [u'voice', u'note', u'point', u'play'],
  [u'story', u'weight', u'music', u'thing', u'creator'],
  [u'lark', u'bit', u'comedy', u'vein'],
  [u'piece', u'work', u'company'],
  [u'music',
   u'point',
   u'world',
   u'outside',
   u'show.<br',
   u'lot',
   u'film',
   u'website',
   u'film',
   u'play',
   u'film'],
  [u'person', u'performance', u'status', u'performance'],
  [u'version'],
  [u'film', u'child', u'age', u'musical', u'blood', u'cannibalism'],
  [u'performance', u'effort', u'year', u'theater', u'era', u'affair'],
  [u'era', u'mile', u'mile', u'madness']],
 [[u'tale'],
  [u'score', u'performance'],
  [u'title',
   u'role',
   u'voice',
   u'pun',
   u'impersonation',
   u'demon',
   u'barber',
   u'relief',
   u'victim',
   u'meat',
   u'py'],
  [u'treat']],
 [[u'version'],
  [u'stage', u'twice.<br', u'ticket', u'today'],
  [u'piece', u'theater', u'scream']],
 [[u'state', u'treatment', u'story', u'genius'],
  [u'music', u'lyric', u'right', u'subject', u'matter'],
  [u'explanation', u'comedy'],
  [u'py', u'business', u'acclaim', u'ingredient'],
  [u'song', u'idea'],
  [u'number',
   u'line',
   u'maker',
   u'indication',
   u'premise',
   u'drama',
   u'comedy']],
 [[u'hand', u'portrayal'],
  [u'role', u'counterpart', u'tenderness', u'courtship', u'boy'],
  [u'memory',
   u'performance',
   u'debut',
   u'performance',
   u'picture',
   u'gaslight',
   u'murder'],
  [u'year'],
  [u'opera', u'superstar'],
  [u'quality', u'score'],
  [u'conclusion', u'actor', u'line', u'opera', u'performer', u'skill'],
  [u'note'],
  [u'loyalty', u'confusion'],
  [u'word']],
 [[u'impact', u'better.<br', u'music', u'line', u'melody', u'song'],
  [u'chord',
   u'structure',
   u'voicing',
   u'bit',
   u'melancholy',
   u'bit',
   u'contentment',
   u'bit',
   u'yearning',
   u'singer',
   u'point',
   u'view.<br',
   u'lyric'],
  [u'rhyme', u'scheme', u'end'],
  [u'caption', u'dialog', u'lyric'],
  [u'award', u'poetry', u'performance'],
  [u'singing', u'range', u'acting'],
  [u'song'],
  [u'timing',
   u'pitch',
   u'beat',
   u'score',
   u'achievement',
   u'musicianship',
   u'delivery.<br',
   u'tale',
   u'time',
   u'tune',
   u'head']],
 [[u'genius',
   u'sweeney',
   u'todd',
   u'concoction',
   u'barber',
   u'return',
   u'revenge',
   u'evil',
   u'daughter',
   u'evil',
   u'world'],
  [u'barber', u'assistance', u'pie', u'shop', u'owner', u'agenda'],
  [u'production',
   u'entirety',
   u'role',
   u'pie',
   u'shop',
   u'owner',
   u'use',
   u'head',
   u'mincemeat'],
  [u'title', u'role', u'role'],
  [u'start',
   u'commit',
   u'character',
   u'rate',
   u'sondaheim',
   u'score',
   u'thing',
   u'opera'],
  [u'woman', u'duet', u'man', u'revenge'],
  [u'sailer', u'rescue', u'daughter'],
  [u'point', u'voice', u'off-pitch', u'couple', u'moment'],
  [u'rest',
   u'cast',
   u'rate',
   u'production',
   u'production',
   u'tenor',
   u'auditorium'],
  [u'score', u'performance', u'night', u'theater', u'experience', u'curtain'],
  [u'taste',
   u'game',
   u'heart',
   u'joy',
   u'music',
   u'theater',
   u'lover',
   u'fan']],
 [[u'book'],
  [u'plainclothe',
   u'detective',
   u'crew',
   u'villain',
   u'type',
   u'character',
   u'boy'],
  [u'villain'],
  [u'villain',
   u'cartoon',
   u'comic',
   u'use',
   u'gunplay',
   u'technology',
   u'advance',
   u'wristwatch',
   u'communicator',
   u'share',
   u'screen',
   u'time',
   u'movie'],
  [u'music', u'song', u'point', u'career'],
  [u'film',
   u'moment',
   u'film',
   u'sound',
   u'pieces.<br',
   u'tough-talking',
   u'kid',
   u'boy',
   u'chin'],
  [u'cinematography'],
  [u'film', u'feature', u'ton', u'actor', u'actor', u'film'],
  [u'film'],
  [u'life', u'part.<br', u'film', u'cinema', u'reason'],
  [u'character', u'style', u'set', u'wardrobe', u'film']],
 [[u'year', u'love', u'version', u'version', u'library'],
  [u'film', u'lot', u'theater', u'production', u'story'],
  [u'version', u'hand', u'them.<br', u'role', u'job'],
  [u'singing']],
 [[u'video', u'concert', u'version'],
  [u'book', u'composer'],
  [u'scope', u'ingenuity', u'composition'],
  [u'performance'],
  [u'performance', u'woman', u'role'],
  [u'performance', u'stage', u'minimalist', u'set', u'production'],
  [u'scaffolding', u'stage', u'street']],
 [[u'opinion', u'musical'],
  [u'score'],
  [u'lead', u'character', u'role'],
  [u'theme', u'revenge'],
  [u'deal', u'humor', u'scale.<br', u'story', u'man', u'period'],
  [u'place', u'foot', u'face'],
  [u'effort', u'device', u'plan', u'revenge'],
  [u'help',
   u'meat',
   u'pie',
   u'shop',
   u'barbershop',
   u'below".<br',
   u'version',
   u'time'],
  [u'revival',
   u'concert',
   u'versions.<br',
   u'aspect',
   u'production',
   u'production',
   u'version'],
  [u'role', u'time', u'work'],
  [u'lover', u'chemistry']],
 [[u'story', u'memory', u'work', u'writer', u'writer'],
  [u'effect', u'poverty', u'breakdown', u'society'],
  [u'aspect', u'songwriter', u'style'],
  [u'success', u'failure', u'thing'],
  [u'barber', u'slit', u'person', u'throat', u'meat', u'py'],
  [u'factory', u'effect', u'misery', u'society', u'need'],
  [u'stagehand', u'set', u'change'],
  [u'baritone', u'voice', u'vehicle'],
  [u'rest', u'clich\xe9s', u'love', u'story', u'bit'],
  [u'album', u'accent'],
  [u'score', u'seriousness', u'story'],
  [u'style',
   u'showtune',
   u'art',
   u'music',
   u'bar',
   u'style',
   u'song',
   u'history',
   u'music'],
  [u'wonder',
   u'score',
   u'song',
   u'duet',
   u'soliloquy',
   u'society',
   u'style',
   u'patter'],
  [u'comedy'],
  [u'warning', u'evil', u'revenge'],
  [u'villain', u'movie', u'point', u'villain'],
  [u'chilling',
   u'reprise',
   u'grave',
   u'end',
   u'world',
   u'vengeance',
   u'vengeance']],
 [[u'cast', u'principal', u'touring', u'company', u'production', u'tv'],
  [u'night', u'release', u'production', u'videotape', u'year'],
  [u'production',
   u'performance',
   u'tape',
   u'age',
   u'audio',
   u'video',
   u'quality',
   u'standard'],
  [u'greatness', u'work', u'performance'],
  [u'today', u'recollection', u'theater', u'performance', u'rendition']],
 [[u'performance'], [u'arm'], [u'boy'], [u'film']],
 [[u'fun', u'respect.<br', u'theatre'], [u'kid', u'kick', u'theatre']],
 [[u'technology', u'play', u'version', u'work'],
  [u'work', u'movie', u'picture', u'candidate', u'cd', u'gypsy'],
  [u'rest', u'cast'],
  [u'version', u'opera']],
 [[u'play', u'turn', u'legend', u'job', u'theatre', u'stage'],
  [u'score', u'score'],
  [u'actress', u'greenfinch'],
  [u'role'],
  [u'replacement', u'title', u'role', u'performance'],
  [u'mark']],
 [[u'start', u'brilliance'],
  [u'fan', u'musical'],
  [u'performance', u'award', u'emmy'],
  [u'mind', u'film', u'oscar'],
  [u'video']],
 [[u'movie', u'movie', u'book', u'feel'],
  [u'set', u'costume', u'color', u'book'],
  [u'movie', u'mob', u'suit', u'hat', u'attitudes.<br', u'relief', u'mumble'],
  [u'movie',
   u'mob',
   u'clich\xe9s',
   u'person',
   u'people',
   u'car',
   u'guy',
   u'girlfriend',
   u'house.<br',
   u'movie',
   u'sense',
   u'word',
   u'camera',
   u'angel',
   u'book'],
  [u'movie', u'movie', u'mistake']],
 [[u'toddler'],
  [u'sure'],
  [u'year'],
  [u'score', u'score'],
  [u'note', u'singing', u'it!<br', u'production'],
  [u'voice', u'voice'],
  [u'epiphany', u'audience', u'reaction'],
  [u'role'],
  [u'bird'],
  [u'theater', u'lover', u'year', u'appreciation', u'music']],
 [[u'set', u'music', u'spin', u'aknife', u'razor', u'great'],
  [u'theatre', u'screen'],
  [u'songwriter',
   u'age',
   u'ballad',
   u'finale',
   u'victim',
   u'meat',
   u'py',
   u'play'],
  [u'play',
   u'ingenue',
   u'lyndeck',
   u'bravado',
   u'performance',
   u'lust',
   u'subject',
   u'vendetta'],
  [u'actor'],
  [u'highlight', u'johanna', u'py', u'title', u'production']],
 [[u'world', u'thing', u'league', u'baseball'],
  [u'actor', u'role'],
  [u'storyline', u'life', u'subplot'],
  [u'person', u'person', u'way', u'tradition'],
  [u'element', u'obstacle', u'film']],
 [[u'league', u'star'],
  [u'look', u'custom', u'behavior'],
  [u'chemistry', u'movie', u'baseball'],
  [u'player', u'shill'],
  [u'time', u'movie', u'baseball']],
 [[u'woman',
   u'baseball',
   u'year',
   u'town',
   u'existence',
   u'baseball',
   u'entity',
   u'underwriting',
   u'support'],
  [u'movie.<br'],
  [u'baseball',
   u'fact',
   u'life',
   u'japan-ball',
   u'deference',
   u'umpire',
   u'pressure',
   u'owner',
   u'manager',
   u'conservatism',
   u'play',
   u'dog',
   u'player',
   u'touch',
   u'isolation',
   u'gai-jin',
   u'jock',
   u'person',
   u'culture'],
  [u'foreigner',
   u'way',
   u'gai-jin',
   u'strike',
   u'zone',
   u'player',
   u'script',
   u'award',
   u'redemption',
   u'play',
   u'theme'],
  [u'angle', u'sport']],
 [[u'sense'],
  [u'movie', u'reviewer', u'film'],
  [u'course', u'actor'],
  [u'today',
   u'yakuza',
   u'leadership',
   u'thank',
   u'cocreator',
   u'human',
   u'person',
   u'adversity',
   u'address'],
  [u'food', u'price', u'thing', u'bread']],
 [[u'reviews', u'film', u'person', u'film'],
  [u'thing', u'job', u'member'],
  [u'misunderstanding', u'reviews', u'fashion'],
  [u'hero', u'novel'],
  [u'engineer',
   u'person',
   u'person',
   u'technology',
   u'cooperation',
   u'host',
   u'value',
   u'virtue'],
  [u'ugliness',
   u'personality',
   u'humanity',
   u'genuine.<br',
   u'baseball',
   u'boorishness',
   u'culture',
   u'coin',
   u'humanity',
   u'decency']],
 [[u'league',
   u'baseball',
   u'player',
   u'career',
   u'culture',
   u'manager',
   u'woman',
   u'insecurity'],
  [u'charm', u'performance'],
  [u'purpose'],
  [u'self', u'doubt', u'difficulty', u'thing', u'film', u'thought-provoking'],
  [u'cast',
   u'championship',
   u'team',
   u'cast',
   u'film',
   u'win',
   u'award',
   u'effort',
   u'viewer',
   u'result']],
 [[u'movie', u'collection', u'baseball', u'movie', u'sport']],
 [[u'movie', u'tv', u'accuracy', u'honesty', u'portrayal', u'ideology'],
  [u'screenplay', u'film', u'knowledge', u'foreigner'],
  [u'affection'],
  [u'movie', u'gaijin', u'experience']],
 [[u'love', u'film', u'adaptation', u'strip', u'genre'],
  [u'superhero',
   u'film',
   u'woodwork',
   u'year',
   u'genre',
   u'film',
   u'source',
   u'material',
   u'effect',
   u'shooting',
   u'strip',
   u'color',
   u'world',
   u'gangster',
   u'woman',
   u'style',
   u'tone.<br',
   u'film',
   u'aesthetic',
   u'character',
   u'ability',
   u'truth.<br',
   u'look',
   u'character',
   u'detective',
   u'title',
   u'bust',
   u'guy',
   u'costs.<br',
   u'treat',
   u'makeup',
   u'plot',
   u'boy',
   u'performance',
   u'control',
   u'action',
   u'city',
   u'gang',
   u'him.<br',
   u'relationship',
   u'father',
   u'figure',
   u'hero'],
  [u'fidelity', u'advance', u'boy', u'squeeze'],
  [u'time',
   u'thing',
   u'figure',
   u'town',
   u'middle.<br',
   u'performance',
   u'focus',
   u'relationship',
   u'lead',
   u'center',
   u'material',
   u'action',
   u'effect'],
  [u'pacino',
   u'chew',
   u'scenery',
   u'role',
   u'standout',
   u'rest.<br',
   u'book',
   u'movie',
   u'genre'],
  [u'detective.<br']],
 [[u'bit', u'time', u'storyline'],
  [u'casting', u'actors'],
  [u'job',
   u'baseball',
   u'player',
   u'figure',
   u'stretch',
   u'coach',
   u'baseball',
   u'team'],
  [u'light', u'comedy']],
 [[u'mind'],
  [u'writer', u'film', u'dialogue'],
  [u'line', u'character'],
  [u'problem', u'character', u'ballplayer'],
  [u'animosity', u'tone', u'interaction', u'team'],
  [u'eye', u'eye', u'coach', u'goal', u'season', u'greatness', u'environment'],
  [u'baseball', u'fan', u'anybody', u'baseball', u'movie']],
 [[u'movie'],
  [u'job', u'movie'],
  [u'film'],
  [u'baseball',
   u'sequence',
   u'baseball',
   u'movie',
   u'actor',
   u'baseball',
   u'player'],
  [u'scene', u'lack', u'hat', u'game', u'scene', u'bath'],
  [u'job', u'recognition', u'baseball', u'movies(he']],
 [[u'movie'],
  [u'copy', u'couple', u'month', u'release', u'video', u'collection'],
  [u'baseball',
   u'fan',
   u'off-season',
   u'copy',
   u'book',
   u'profile',
   u'baseball',
   u'challenge',
   u'player'],
  [u'yesterday', u'movie', u'screenplay', u'book'],
  [u'parallel'],
  [u'character', u'slugger', u'day'],
  [u'teammate',
   u'character',
   u'veteran',
   u'league',
   u'peace',
   u'frustration',
   u'game',
   u'teammate'],
  [u'character',
   u'sequence',
   u'encounter',
   u'fanfare',
   u'signing',
   u'success',
   u'fuel',
   u'sport',
   u'medium',
   u'slump',
   u'spur',
   u'frustration',
   u'alienation',
   u'teammate',
   u'fan',
   u'medium',
   u'disillusionment',
   u'desire',
   u'home'],
  [u'difference', u'movie', u'touch', u'love'],
  [u'<br', u'love', u'viewer', u'site', u'actress', u'work'],
  [u'article',
   u'love',
   u'scene',
   u'foreigner',
   u'movie',
   u'standard',
   u'kiss',
   u'bath',
   u'towel',
   u'outrage',
   u'public',
   u'male',
   u'role',
   u'kind',
   u'television',
   u'movie',
   u'industry'],
  [u'shame', u'actress', u'movie'],
  [u'<br', u'movie', u'baseball', u'element', u'difference', u'copy'],
  [u'read', u'companion', u'book', u'movie']],
 [[u'person',
   u'baseball',
   u'player',
   u'movie',
   u'baseball.<br',
   u'think',
   u'movie',
   u'comedy',
   u'relationship'],
  [u'movie', u'comedy.<br', u'movie', u'culture'],
  [u'baseball', u'manager'],
  [u'barrier', u'success'],
  [u'ballplayer',
   u'japanese',
   u'team',
   u'mentality',
   u'manager',
   u'achievement',
   u'middle.<br',
   u'romance',
   u'critique',
   u'culture'],
  [u'understanding',
   u'mindset',
   u'miss',
   u'movie',
   u'baseball',
   u'romance',
   u'culture',
   u'clash',
   u'comedy',
   u'relief'],
  [u'experience',
   u'understanding',
   u'culture',
   u'movie',
   u'culture',
   u'portrayal.<br',
   u'movie']],
 [[u'era', u'culture', u'time', u'capsule'],
  [u'vacation',
   u'end',
   u'film',
   u'fan',
   u'injection',
   u'tradition',
   u'culture',
   u'baseball',
   u'culture',
   u'game.<br',
   u'slumping',
   u'slugger',
   u'runners-up',
   u'answer'],
  [u'manager',
   u'piece',
   u'puzzle',
   u'baseball',
   u'field',
   u'more.<br',
   u'casting',
   u'selleck',
   u'script',
   u'character',
   u'suit',
   u'film',
   u'television',
   u'cast',
   u'owner'],
  [u'actor', u'love', u'manager', u'daughter', u'believer', u'tradition'],
  [u'girlfriend'],
  [u'father',
   u'bit',
   u'man',
   u'baseball',
   u'scene',
   u'ex-patriate',
   u'mentor'],
  [u'fish-out-of-water',
   u'element',
   u'right',
   u'country',
   u'language',
   u'practice',
   u'way',
   u'copy',
   u'pastime'],
  [u'scene', u'magazine', u'manager', u'tradition', u'boss'],
  [u'plot',
   u'subplot',
   u'end',
   u'comedy',
   u'comedy-drama',
   u'drama',
   u'humor'],
  [u'plot', u'way', u'critic', u'actor', u'league', u'film'],
  [u'situation', u'place', u'backdrop', u'result', u'film'],
  [u'baseball',
   u'cinematography',
   u'rival',
   u'love',
   u'realism.<br',
   u'film',
   u'baseball',
   u'workplace',
   u'person',
   u'work',
   u'origin',
   u'agenda',
   u'difference',
   u'company',
   u'team.<br',
   u'film',
   u'way',
   u'theater']],
 [[u'movie',
   u'story',
   u'baseball',
   u'semi-over',
   u'view',
   u'issue',
   u'player',
   u'end',
   u'time',
   u'sport'],
  [u'difference',
   u'baseball',
   u'fact',
   u'game',
   u'differently.<br',
   u'movie',
   u'tv',
   u'winter',
   u'night',
   u'watch',
   u'summer',
   u'spring',
   u'training',
   u'month'],
  [u'movie', u'baseball', u'fan', u'date', u'movie']],
 [[u'guy', u'friend'],
  [u'movie'],
  [u'end', u'day', u'movie', u'time', u'plane', u'month'],
  [u'thing', u'ball', u'game', u'scene'],
  [u'sequel'],
  [u'argumrnt', u'ex-wife']],
 [[u'year'],
  [u'paint',
   u'picture',
   u'mentality',
   u'sport',
   u'relationship',
   u'perspective'],
  [u'movie', u'judge']],
 [[u'movie', u'lot', u'difference', u'practice', u'year'],
  [u'job', u'movie'],
  [u'fan', u'charm', u'charisma', u'film', u'life', u'way', u'actor'],
  [u'<br',
   u'film',
   u'actor',
   u'fun',
   u'movie',
   u'place',
   u'party',
   u'sight-see']],
 [[u'word', u'screen', u'version'],
  [u'movie'],
  [u'yellow-clad',
   u'title',
   u'character',
   u'detective',
   u'action',
   u'weaknesses.<br',
   u'rest',
   u'character',
   u'world'],
  [u'hubby', u'crime', u'fighter', u'person', u'boy', u'villain'],
  [u'character'],
  [u'plot', u'way', u'boy'],
  [u'event',
   u'town',
   u'answer',
   u'thinks.<br',
   u'course',
   u'thing',
   u'movie',
   u'fun'],
  [u'trouble', u'age', u'use'],
  [u'movie']],
 [[u'light', u'sport', u'comedy', u'core'],
  [u'plot',
   u'level',
   u'paradox',
   u'baseball',
   u'fine',
   u'game',
   u'value',
   u'value',
   u'game'],
  [u'sport', u'comedy', u'result', u'uncomprehending', u'disbelief'],
  [u'character', u'baseball', u'star', u'ball'],
  [u'character',
   u'change',
   u'life',
   u'curveball',
   u'life',
   u'midst',
   u'country',
   u'manager',
   u'team',
   u'girlfriend',
   u'try'],
  [u'sound', u'stuff'],
  [u'clash', u'culture', u'comedy', u'place', u'sport', u'level'],
  [u'story',
   u'man',
   u'immaturity',
   u'way',
   u'life',
   u'pain',
   u'success',
   u'place'],
  [u'story',
   u'respect',
   u'performance',
   u'tush',
   u'person',
   u'tantrum',
   u'public',
   u'character',
   u'dismay'],
  [u'fan'],
  [u'baseball', u'loss', u'innocence', u'tale']],
 [[u'lot', u'comment', u'film', u'baseball', u'movie'],
  [u'friend', u'event', u'movie', u'suspension', u'disbelief'],
  [u'reply', u'event', u'truth', u'life', u'movie']],
 [[u'excitement', u'drama', u'fun', u'comedy', u'film'],
  [u'performance', u'here.<br', u'film', u'time', u'sub', u'movie', u'<br']],
 [[u'wife',
   u'movie',
   u'pick-me-up',
   u'laugh',
   u'conflict',
   u'character',
   u'repore',
   u'comedy',
   u'relief']],
 [[u'movie'],
  [u'barb', u'villain'],
  [u'cast', u'blast', u'expense', u'audience'],
  [u'fun', u'comedy', u'meaning', u'love']],
 [[u'movie', u'comedy'], [u'release']],
 [[u'movie'],
  [u'water',
   u'lot',
   u'humor',
   u'lot',
   u'scenery',
   u'movie',
   u'place',
   u'fleet',
   u'character',
   u'pier',
   u'end',
   u'movie',
   u'boat'],
  [u'couple', u'lobster', u'priceless.<br', u'person']],
 [[u'count', u'time', u'movie', u'time'],
  [u'expression', u'slapstick', u'humor', u'timing', u'joke'],
  [u'character', u'sonar'],
  [u'job']],
 [[u'movie', u'cable', u'tv'],
  [u'movie', u'look', u'time'],
  [u'film', u'fate', u'love', u'scene'],
  [u'character', u'movie', u'kind', u'guy', u'zaniness'],
  [u'troop']],
 [[u'ex', u'submarine', u'officer', u'submarine', u'movie'],
  [u'comedy', u'joke', u'force'],
  [u'cast', u'submarine', u'guy', u'hero', u'diesel', u'boat'],
  [u'dbf', u'way', u'boat']],
 [[u'time', u'writing', u'vote', u'rating'],
  [u'picture'],
  [u'person', u'movie'],
  [u'movie', u'book', u'hero'],
  [u'win', u'nomination'],
  [u'acting', u'actor', u'effect', u'opinion', u'year'],
  [u'entertainment'],
  [u'boy']],
 [[u'movie', u'time', u'time'],
  [u'movie',
   u'man',
   u'odd',
   u'over-self-confident',
   u'system.<br',
   u'movie',
   u'person',
   u'movie.<br',
   u'action',
   u'comedy',
   u'film',
   u'soon.<br']],
 [[u'laugh',
   u'trust',
   u'movie',
   u'guy.<br',
   u'synopsis',
   u'rest',
   u'movie.<br',
   u'thing',
   u'end',
   u'credit']],
 [[u'misfit',
   u'pull',
   u'mission.<br',
   u'ensues.<br',
   u'film',
   u'humor',
   u'character',
   u'boat'],
  [u'film', u'tv'],
  [u'role',
   u'cosmos',
   u'thing',
   u'service',
   u'mankind',
   u'fun',
   u'entertainment',
   u'minute'],
  [u'uniform']],
 [[u'guy', u'rendition'],
  [u'officer'],
  [u'crew', u'laundry'],
  [u'engineer', u'class'],
  [u'job'],
  [u'scene', u'golf', u'course', u'way', u'port'],
  [u'xo', u'weasel', u'time']],
 [[u'minute', u'movie', u'board', u'sub', u'character', u'gel'],
  [u'share', u'sailor'],
  [u'movie', u'sex', u'violence', u'time'],
  [u'dialog', u'heart'],
  [u'crew']],
 [[u'comedy', u'epic'],
  [u'comedy', u'day', u'movie'],
  [u'right',
   u'home',
   u'role',
   u'captain',
   u'diesel',
   u'sub',
   u'war',
   u'game',
   u'terrorist',
   u'bomb',
   u'defense'],
  [u'plot', u'pre', u'topic', u'start', u'command', u'laugh'],
  [u'plain',
   u'minute',
   u'laugh',
   u'prude',
   u'language',
   u'innuendo',
   u'enjoy']],
 [[u'entertainment', u'wisdom', u'movie', u'capital'],
  [u'sexism', u'violence', u'comedy', u'bunch', u'misfit', u'submarine'],
  [u'task', u'star'],
  [u'submarine'],
  [u'underdog', u'movie']],
 [[u'slow', u'chance'],
  [u'spirit', u'arm', u'movie', u'group', u'method'],
  [u'way', u'result', u'mutiny', u'attempt', u'pirate', u'crew', u'plank'],
  [u'fisherman', u'harbor', u'whale', u'decoy', u'antic', u'surprise']],
 [[u'movie',
   u'theater',
   u'release',
   u'tape',
   u'year',
   u'dvd',
   u'sum',
   u'comedy',
   u'tattoo',
   u'thing',
   u'commander',
   u'diesel',
   u'sub',
   u'crew',
   u'screwball',
   u'misfit'],
  [u'attack',
   u'sub',
   u'captain',
   u'guy',
   u'admiral',
   u'exercise',
   u'laugh',
   u'segment',
   u'cook',
   u'kind',
   u'humor',
   u'me.<br',
   u'end',
   u'machinist',
   u'explanation',
   u'inside',
   u'knowledge',
   u'submariner',
   u'consultant',
   u'thank',
   u'advent',
   u'sub',
   u'salt',
   u'dbf',
   u'pin',
   u'boat'],
  [u'<br', u'friend', u'aspect', u'movie', u'exercise']],
 [[u'mix', u'story', u'character', u'moment', u'joke', u'fun', u'performance'],
  [u'guy', u'submarine', u'scene', u'set'],
  [u'set', u'decoration', u'tour', u'scene', u'movie'],
  [u'job', u'film.<br', u'light', u'entertaining', u'movie']],
 [[u'fun'],
  [u'joke', u'figure', u'eye', u'heart'],
  [u'film', u'actor'],
  [u'setting', u'\x84batman', u'movie'],
  [u'story', u'plot', u'ending.<br', u'movie', u'game', u'friend'],
  [u'credit', u'beginning', u'actor', u'make-up']],
 [[u'post', u'movie', u'script'],
  [u'milk', u'beverage', u'choice', u'nose'],
  [u'mix', u'actor', u'sync'],
  [u'actor', u'reference', u'movie', u'role'],
  [u'shot',
   u'game',
   u'basketball',
   u'team',
   u'basketball',
   u'fan',
   u'jump',
   u'stint'],
  [u'character', u'attribute'],
  [u'anal-retentive', u'character', u'offset', u'demeanor'],
  [u'movie', u'laugh', u'time', u'bit', u'movie']],
 [[u'flick', u'pro'],
  [u'comedy',
   u'vehicle',
   u'character',
   u'sequel',
   u'movie',
   u'border',
   u'cult',
   u'obsession'],
  [u'group',
   u'grandson',
   u'role',
   u'movie',
   u'board.<br',
   u'fun',
   u'romp',
   u'company.<br',
   u'movie',
   u'entertainment']],
 [[u'scripting', u'comedy', u'movie', u'year'],
  [u'character', u'bit'],
  [u'timing', u'script', u'underdog', u'plot'],
  [u'age', u'set', u'reference', u'galley', u'scene'],
  [u'movie']],
 [[u'plot', u'world', u'comedy', u'movie', u'rule'],
  [u'movie'],
  [u'guy', u'segment'],
  [u'actor', u'movie', u'character', u'movie'],
  [u'actor', u'shot', u'character', u'movie', u'year', u'sub'],
  [u'chance', u'brand', u'sub'],
  [u'crew', u'misfit'],
  [u'series'],
  [u'thing', u'officer', u'officer', u'woman'],
  [u'commander',
   u'position',
   u'movie',
   u'fair',
   u'fact',
   u'movie',
   u'theater'],
  [u'silence',
   u'fart',
   u'reaction',
   u'smell',
   u'movie',
   u'fun',
   u'movie',
   u'hate',
   u'movie']],
 [[u'comedy', u'heart', u'well.<br'],
  [u'piece', u'art'],
  [u'enterprise', u'ship', u'diesel', u'too.<br', u'scene', u'stingray'],
  [u'matter', u'sir'],
  [u'problem.<br', u'story'],
  [u'sub', u'task', u'diesel', u'sub', u'attack'],
  [u'eye', u'star', u'grudge', u'crew', u'screw'],
  [u'crew', u'working', u'team', u'date', u'sub']],
 [[u'intelligence', u'fleet'],
  [u'friend', u'yard', u'sale', u'diesel', u'fleet'],
  [u'country', u'hand', u'baby', u'warhead'],
  [u'year',
   u'command',
   u'diesel',
   u'sub',
   u'exercise',
   u'surface',
   u'fleet',
   u'line',
   u'attack',
   u'sub'],
  [u'command',
   u'time',
   u'whip',
   u'news',
   u'bear',
   u'err',
   u'group',
   u'submariner',
   u'warrior'],
  [u'penis', u'commander', u'favorite', u'delegate', u'authority', u'manner'],
  [u'piece', u'recruitment', u'propaganda', u'gem', u'creator']],
 [[u'adventure',
   u'lead',
   u'role',
   u'feature',
   u'sub',
   u'commander',
   u'sub',
   u'series',
   u'war-game',
   u'crew',
   u'man',
   u'woman',
   u'too).<br',
   u'writer',
   u'comedy',
   u'film'],
  [u'character', u'crew', u'plenty', u'movie', u'humor', u'sword'],
  [u'member',
   u'scene',
   u'gesture',
   u'impersonation',
   u'personalities.<br',
   u'version'],
  [u'film', u'job', u'way']],
 [[u'movie', u'family'],
  [u'eye', u'mention', u'movie', u'movie'],
  [u'movie'],
  [u'bit', u'sheep', u'navy'],
  [u'kind', u'guy', u'golf', u'sub', u'ball', u'golf', u'course'],
  [u'kind', u'guy', u'wake', u'hangover', u'tattoo', u'dongle'],
  [u'application',
   u'command',
   u'sub',
   u'time',
   u'sub',
   u'time',
   u'desk',
   u'job',
   u'life'],
  [u'admiralty', u'boat', u'sub'],
  [u'diesel', u'sub', u'relic'],
  [u'mission',
   u'war',
   u'game.<br',
   u'bit',
   u'boat',
   u'point',
   u'talk',
   u'torn'],
  [u'sub', u'world', u'country'],
  [u'renegade', u'captain', u'diesel', u'sub', u'warhead', u'basis'],
  [u'admiralty', u'war', u'game'],
  [u'mission', u'sea', u'navy', u'basis'],
  [u'battle', u'course.<br', u'plot'],
  [u'movie', u'gag'],
  [u'laugh', u'night', u'look']],
 [[u'documentary', u'movie', u'list', u'actor', u'director', u'movie'],
  [u'theme',
   u'script',
   u'cast',
   u'director',
   u'lot',
   u'money',
   u'movie.<br',
   u'proof',
   u'corollary',
   u'theory'],
  [u'screenplay'],
  [u'actor', u'unknown', u'movie'],
  [u'movie', u'case'],
  [u'character',
   u'actor',
   u'enjoyability',
   u'film.<br',
   u'dynamic',
   u'movie',
   u'magic',
   u'film',
   u'transition',
   u'line',
   u'line',
   u'dialog.<br',
   u'premise',
   u'lot',
   u'lot',
   u'inaccuracy',
   u'thing',
   u'world',
   u'navy'],
  [u'merchant',
   u'marine',
   u'feel',
   u'movie',
   u'mark',
   u'life',
   u'sea',
   u'goes.<br',
   u'movie',
   u'family',
   u'film',
   u'fan',
   u'lot',
   u'wit',
   u'sarcasm']],
 [[u'video',
   u'tape',
   u'year',
   u'watch',
   u'year.<br',
   u'wit',
   u'movie',
   u'success'],
  [u'formula'],
  [u'ratings.<br', u'comedy'],
  [u'fun', u'flick']],
 [[u'actor', u'movie', u'way'],
  [u'detective', u'mob', u'boss', u'city'],
  [u'time', u'boy', u'man', u'city', u'singer', u'girlfriend', u'eye'],
  [u'face'],
  [u'villian', u'book', u'collection.<br', u'movie'],
  [u'movie', u'age', u'fun', u'movie', u'family']],
 [[u'role', u'sexpot', u'brain'],
  [u'line', u'catch', u'phrase'],
  [u'movie', u'plot', u'script', u'surprise', u'time'],
  [u'phrase',
   u'term',
   u'head',
   u'obstacle',
   u'sheer',
   u'accuracy',
   u'realism',
   u'movie',
   u'character']],
 [[u'movie', u'cast', u'character', u'script', u'synergy'],
  [u'character', u'truth', u'person', u'team', u'goal', u'morality'],
  [u'situation', u'movie', u'opening', u'premise'],
  [u'tension', u'humor'],
  [u'movie', u'movie', u'term', u'entertaining'],
  [u'music',
   u'copy',
   u'music',
   u'post',
   u'war',
   u'navy',
   u'movie',
   u'humor',
   u'point',
   u'greatness',
   u'eye',
   u'beholder'],
  [u'scene', u'credit', u'music', u'video', u'screen', u'feature'],
  [u'scene', u'cut', u'casting', u'acting', u'movie', u'pretension'],
  [u'guy', u'gal.<br', u'day', u'thought', u'film'],
  [u'fortune'],
  [u'wife', u'night', u'screen'],
  [u'movie', u'level', u'budget', u'film', u'winner'],
  [u'home',
   u'video',
   u'movie',
   u'vault',
   u'shame',
   u'shot',
   u'color',
   u'year',
   u'release'],
  [u'copy'],
  [u'eye',
   u'candy',
   u'film',
   u'credit',
   u'sequence',
   u'screen',
   u'music',
   u'video',
   u'feature']],
 [[u'woman',
   u'enchanted',
   u'castle',
   u'coast',
   u'novel',
   u'film',
   u'virtue',
   u'script',
   u'ensemble'],
  [u'element',
   u'movie',
   u'feeling',
   u'appreciation',
   u'story',
   u'resolution.<br',
   u'actress'],
  [u'wife', u'longing', u'wisteria', u'tranquillity'],
  [u'housewife', u'responsibility', u'hostess', u'castle'],
  [u'noblewoman', u'throng', u'male', u'admirer'],
  [u'scene', u'lady', u'memory', u'past.<br', u'man', u'story'],
  [u'husband', u'role', u'researcher', u'personality', u'writer'],
  [u'spouse',
   u'man',
   u'attempt',
   u'bath',
   u'bathtub',
   u'assistance',
   u'castle',
   u'servant'],
  [u'decade',
   u'actor',
   u'lady',
   u'landlord.<br',
   u'maven',
   u'proprietress',
   u'housewife']],
 [[u'kind', u'movie', u'poster', u'trailer'],
  [u'kind',
   u'movie',
   u'waitress',
   u'cross',
   u'country',
   u'adventure',
   u'crook',
   u'fact',
   u'film',
   u'tale',
   u'person',
   u'dream'],
  [u'unpredictability'],
  [u'violence', u'dream', u'reality', u'drama', u'comedy']],
 [[u'summer', u'retread', u'disappointment', u'breath', u'air'],
  [u'picture', u'man', u'woman', u'sex', u'film', u'brillant', u'company'],
  [u'performance',
   u'career',
   u'waitress',
   u'death',
   u'husband',
   u'mainstay',
   u'fantasy',
   u'world'],
  [u'trick', u'film', u'character'],
  [u'love', u'image', u'soap', u'opera'],
  [u'film', u'life', u'humor', u'love', u'violence']],
 [[u'movie'],
  [u'moment'],
  [u'rest', u'cast', u'character'],
  [u'story', u'twist'],
  [u'formula', u'movie']],
 [[u'film', u'trip', u'town'],
  [u'soap', u'groupie'],
  [u'character', u'forgiveness', u'goof'],
  [u'fantasy', u'fact', u'speak', u'devil', u'role'],
  [u'wish', u'wish', u'chair'],
  [u'friendship'],
  [u'cold', u'winter', u'day']],
 [[u'writing', u'acting', u'plot-twister', u'film', u'year'],
  [u'casting', u'direction', u'film', u'performance', u'soul'],
  [u'time'],
  [u'tongue', u'cheek', u'performance'],
  [u'spoof', u'soap', u'opera', u'movie']],
 [[u'question',
   u'film',
   u'people?<br',
   u'answer',
   u'film',
   u'whiney',
   u'note',
   u'voice',
   u'voice'],
  [u'fact', u'reality', u'time', u'film', u'task.<br'],
  [u'sublimate',
   u'energy',
   u'surface',
   u'most.<br',
   u'allusion',
   u'time',
   u'film'],
  [u'point',
   u'song',
   u'sera',
   u'sera',
   u'soundtrack',
   u'thing',
   u'film',
   u'performance',
   u'cast.<br',
   u'predictable.<br',
   u'reason',
   u'film',
   u'master',
   u'voice']],
 [[u'goof', u'error<br', u'room', u'suicide', u'gun', u'silencer'],
  [u'second', u'bang', u'gun']],
 [[u'book',
   u'movie',
   u'villain',
   u'life',
   u'screen',
   u'smile',
   u'line',
   u'dialog'],
  [u'manner'],
  [u'homage',
   u'gangster',
   u'picture',
   u'time',
   u'meant',
   u'kid',
   u'archetype',
   u'color',
   u'criminal',
   u'tommy',
   u'gun',
   u'personality'],
  [u'film',
   u'continuation',
   u'sight',
   u'gag',
   u'seriously.<br',
   u'time',
   u'movie',
   u'depiction',
   u'reality',
   u'comic-book',
   u'outline',
   u'old-school'],
  [u'story',
   u'cop',
   u'crook',
   u'cop',
   u'detective',
   u'bust',
   u'boy',
   u'performance',
   u'date',
   u'sense',
   u'sense',
   u'style',
   u'luck'],
  [u'kid', u'spunk', u'kid'],
  [u'nightclub',
   u'dame',
   u'kind',
   u'performance',
   u'suit',
   u'role',
   u'fine',
   u'feeling'],
  [u'dealing',
   u'figure',
   u'voice.<br',
   u'impersonation',
   u'film',
   u'splash',
   u'effect',
   u'explosion',
   u'comedy',
   u'action',
   u'syrup',
   u'stack',
   u'pancake'],
  [u'world',
   u'shot',
   u'thrust',
   u'plot',
   u'line',
   u'editing',
   u'montage',
   u'camera',
   u'angle',
   u'panel',
   u'comic'],
  [u'sequence', u'story', u'music', u'punch', u'gun-shot', u'way'],
  [u'heap-load',
   u'dialog',
   u'script',
   u'favorite',
   u'enemy',
   u'enemy',
   u'enemy',
   u'reference',
   u'figure',
   u'quotes).<br',
   u'time',
   u'movie',
   u'theater',
   u'bit',
   u'fantasy',
   u'degree'],
  [u'cheer',
   u'kid',
   u'action',
   u'intent',
   u'cousin',
   u'comic-book',
   u'movie',
   u'pg-13',
   u'fare',
   u'adult',
   u'throw-back',
   u'panache',
   u'feeling'],
  [u'ham', u'word']],
 [[u'nurse',
   u'september',
   u'film',
   u'festival',
   u'film',
   u'sea',
   u'vlissingen'],
  [u'day', u'time', u'evening', u'movie', u'taste', u'festival'],
  [u'nurse', u'ren\xe9e', u'zellweger', u'girl', u'love', u'soap-opera-star'],
  [u'role', u'freeman', u'rock', u'\xe0nd', u'ren\xe9e', u'zellweger'],
  [u'mix', u'romance', u'violence', u'roadmovie'],
  [u'soap-opera-lover', u'nurse', u'movie', u'character'],
  [u'friend',
   u'cause',
   u'story',
   u'line',
   u'freeman',
   u'rock',
   u'scene',
   u'thriller-aspect',
   u'picture'],
  [u'end', u'nurse', u'charm']],
 [[u'combination', u'plot', u'character'],
  [u'way', u'job', u'work', u'villain'],
  [u'standout'],
  [u'head'],
  [u'sort',
   u'sparkle',
   u'performance',
   u'part.<br',
   u'road',
   u'movie',
   u'synopsis'],
  [u'road']],
 [[u'film'],
  [u'profanity', u'violence', u'innuendo', u'movie', u'child'],
  [u'waitress', u'trance', u'life', u'character', u'soap', u'opera'],
  [u'life', u'hitman', u'drug'],
  [u'situation', u'hospital', u'set', u'soap', u'opera'],
  [u'problem'],
  [u'vote', u'actress', u'oscar', u'nominee'],
  [u'performance', u'biography'],
  [u'diagnosis']],
 [[u'movie', u'crime', u'drama', u'comedy', u'way', u'movie', u'end'],
  [u'theater', u'scalping', u'scene'],
  [u'soap', u'opera', u'actor'],
  [u'ability', u'soap', u'scene', u'expression', u'voice', u'intonation'],
  [u'scene', u'sleepless', u'comedy'],
  [u'fascination', u'grandfather', u'scene', u'photograph', u'laugh'],
  [u'performance', u'moment'],
  [u'waitress', u'crude', u'husband', u'dirt'],
  [u'job', u'hospital', u'credential', u'movie'],
  [u'fan', u'movie'],
  [u'style', u'argument', u'sheriff', u'soap', u'opera'],
  [u'blood', u'violence', u'lot', u'language', u'watch', u'plenty', u'laugh']],
 [[u'spoiler',
   u'spoiler',
   u'spoiler',
   u'film',
   u'amusing.it',
   u'lot',
   u'line',
   u'film.however',
   u'problem',
   u'plot',
   u'simple.betty(renee',
   u'life',
   u'house',
   u'wife',
   u'husband',
   u'love',
   u'soap',
   u'series',
   u'character,dr'],
  [u'minute', u'film'],
  [u'film'],
  [u'reference',
   u'end',
   u'film',
   u'conclusion',
   u'place',
   u'home',
   u'conclusion',
   u'end',
   u'film',
   u'wonder',
   u'experience',
   u'answer',
   u'all.<br',
   u'film',
   u'reality',
   u'fantasy'],
  [u'scene',
   u'subject',
   u'joke',
   u'plot',
   u'line',
   u'film',
   u'way',
   u'subject',
   u'way).<br',
   u'film',
   u'soap',
   u'series',
   u'obsession',
   u'form',
   u'sympathy',
   u'obsession',
   u'one.<br',
   u'film',
   u'scene',
   u'subject',
   u'impact',
   u'characters.<br',
   u'make',
   u'before.it',
   u'shame',
   u'film',
   u'concentrate',
   u'subjects.as',
   u'lot',
   u'film,amusing']],
 [[u'comedy',
   u'year.<br',
   u'soap',
   u'opera',
   u'waitress',
   u'witness',
   u'husband',
   u'murder',
   u'hitman',
   u'member'],
  [u'heart',
   u'specialist',
   u'character',
   u'show).<br',
   u'hitman',
   u'fun',
   u'chemistry',
   u'fun',
   u'actor',
   u'persona'],
  [u'performance'],
  [u'goodness', u'warmth'],
  [u'script',
   u'sit-com',
   u'character',
   u'situation',
   u'together.<br',
   u'comedy',
   u'thing',
   u'winning',
   u'performance',
   u'script',
   u'delightful.<br']],
 [[u'way'],
  [u'ensemble',
   u'character',
   u'plot',
   u'heart',
   u'strings.<br',
   u'thing',
   u'movie',
   u'interaction'],
  [u'heart', u'fare', u'rest', u'life'],
  [u'it.<br',
   u'role',
   u'movie',
   u'touch',
   u'violence',
   u'bloodlust',
   u'male']],
 [[u'poster', u'pole'],
  [u'buzz', u'noise', u'try'],
  [u'movie', u'plot'],
  [u'role', u'woman', u'episode', u'experience'],
  [u'surprise', u'comedian'],
  [u'identity', u'crisis'],
  [u'cast'],
  [u'<br',
   u'complaint',
   u'director',
   u'splash',
   u'year',
   u'\x91in',
   u'company',
   u'convention'],
  [u'mood-creating', u'effect', u'throat', u'scene'],
  [u'character', u'end', u'romance', u'trick', u'home', u'smile', u'face'],
  [u'director',
   u'writer',
   u'audience',
   u'idiots??<br',
   u'movie',
   u'irritation'],
  [u'year', u'movie', u'rank', u'surprise']],
 [[u'story', u'guy', u'picture'],
  [u'story', u'female-hero', u'male-villain'],
  [u'person', u'face', u'face', u'inside']],
 ...]

In [17]:
import itertools as IT
import collections

def flatten_iter(iterable, ltypes=collections.Iterable):
    remainder = iter(iterable)
    while True:
        first = next(remainder)
        if isinstance(first, ltypes) and not isinstance(first, basestring):
            remainder = IT.chain(first, remainder)
        else:
            yield first

In [18]:
vocab_raw = list(flatten_iter(ldadata))
#removing duplicates
vocab_unique = []
for i in vocab_raw:
    if i not in vocab_unique:
        vocab_unique.append(i)

In [19]:
vocab = {}
for i in range(len(vocab_unique)):
    vocab[vocab_unique[i]] = i
    
id2word = {}
for i in range(len(vocab_unique)):
    id2word[i] = vocab_unique[i]

In [20]:
id2word[0], vocab.keys()[5], vocab[vocab.keys()[5]]


Out[20]:
(u'sure', u'yellow', 5224)

In [21]:
from collections import defaultdict

def auxillary_function(ldadata, vocab):
    d = defaultdict(int)
    for i in ldadata: 
        index = vocab[i]
        d[index] += 1
    return d.items()

In [89]:
all_sentences = []
for review in ldadata: # into a review
    for sentence in review:
        this_sentence = []
        for word in sentence: 
            if word not in this_sentence: 
                this_sentence.append(word)
        all_sentences.append(this_sentence)

corpus = []
for sentence in all_sentences: 
    corpus.append(auxillary_function(sentence, vocab))

In [90]:
corpus


Out[90]:
[[(0, 1), (1, 1), (2, 1), (3, 1), (4, 1), (5, 1)],
 [(1, 1), (2, 1), (6, 1)],
 [(8, 1), (1, 1), (2, 1), (9, 1), (7, 1)],
 [(2, 1)],
 [(10, 1), (4, 1)],
 [(11, 1), (4, 1)],
 [(1, 1), (4, 1)],
 [(4, 1)],
 [(4, 1), (12, 1), (13, 1)],
 [(14, 1), (15, 1)],
 [(16, 1), (17, 1), (4, 1)],
 [(1, 1), (18, 1), (19, 1), (20, 1), (21, 1)],
 [(4, 1)],
 [(1, 1)],
 [(1, 1), (22, 1)],
 [(1, 1), (10, 1)],
 [(23, 1)],
 [(24, 1), (25, 1)],
 [(1, 1), (26, 1), (27, 1), (28, 1)],
 [(29, 1)],
 [(32, 1), (33, 1), (34, 1), (30, 1), (31, 1)],
 [(1, 1),
  (35, 1),
  (36, 1),
  (37, 1),
  (38, 1),
  (39, 1),
  (40, 1),
  (41, 1),
  (42, 1)],
 [(43, 1), (44, 1), (45, 1), (46, 1)],
 [(1, 1), (47, 1)],
 [(48, 1), (49, 1), (50, 1)],
 [(1, 1), (51, 1)],
 [(52, 1), (53, 1)],
 [(1, 1),
  (52, 1),
  (54, 1),
  (55, 1),
  (56, 1),
  (57, 1),
  (58, 1),
  (59, 1),
  (60, 1)],
 [(4, 1)],
 [(64, 1), (65, 1), (61, 1), (62, 1), (63, 1)],
 [(1, 1), (54, 1)],
 [(1, 1), (66, 1), (67, 1), (68, 1), (69, 1)],
 [(72, 1), (1, 1), (70, 1), (71, 1)],
 [(73, 1), (74, 1), (30, 1), (1, 1)],
 [(48, 1), (75, 1), (76, 1), (77, 1), (78, 1), (79, 1), (80, 1), (81, 1)],
 [(73, 1),
  (75, 1),
  (82, 1),
  (83, 1),
  (84, 1),
  (85, 1),
  (86, 1),
  (87, 1),
  (88, 1),
  (89, 1)],
 [(90, 1), (91, 1), (92, 1)],
 [(71, 1)],
 [(73, 1), (93, 1), (30, 1)],
 [(96, 1), (97, 1), (98, 1), (99, 1), (55, 1), (94, 1), (95, 1)],
 [(100, 1), (101, 1)],
 [(104, 1), (61, 1), (102, 1), (103, 1)],
 [(105, 1), (106, 1), (107, 1), (108, 1), (84, 1), (25, 1)],
 [(1, 1), (2, 1), (109, 1), (110, 1), (111, 1), (112, 1)],
 [(113, 1), (114, 1), (99, 1), (93, 1)],
 [(1, 1), (115, 1)],
 [(116, 1), (117, 1)],
 [(1, 1), (118, 1)],
 [(1, 1)],
 [(73, 1), (42, 1), (94, 1)],
 [(119, 1)],
 [(120, 1), (121, 1), (1, 1)],
 [(122, 1)],
 [(73, 1), (123, 1), (13, 1), (1, 1)],
 [(125, 1), (124, 1), (13, 1), (126, 1), (117, 1)],
 [(128, 1), (1, 1), (129, 1), (96, 1), (127, 1)],
 [(130, 1), (131, 1), (132, 1), (13, 1), (133, 1)],
 [(136, 1), (137, 1), (2, 1), (134, 1), (135, 1)],
 [(138, 1), (139, 1), (140, 1), (77, 1), (13, 1), (141, 1), (121, 1)],
 [(48, 1),
  (4, 1),
  (142, 1),
  (143, 1),
  (144, 1),
  (145, 1),
  (146, 1),
  (147, 1),
  (148, 1),
  (149, 1),
  (150, 1),
  (151, 1),
  (152, 1),
  (153, 1),
  (154, 1),
  (155, 1),
  (21, 1)],
 [(160, 1),
  (2, 1),
  (156, 1),
  (13, 1),
  (117, 1),
  (124, 1),
  (157, 1),
  (158, 1),
  (159, 1)],
 [(161, 1),
  (162, 1),
  (163, 1),
  (164, 1),
  (37, 1),
  (166, 1),
  (167, 1),
  (106, 1),
  (45, 1),
  (165, 1)],
 [(1, 1), (168, 1), (169, 1), (170, 1), (171, 1), (13, 1), (120, 1)],
 [(132, 1), (170, 1), (171, 1), (172, 1), (173, 1), (174, 1), (175, 1)],
 [(1, 1), (13, 1), (14, 1), (176, 1), (177, 1), (178, 1), (179, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (77, 1),
  (16, 1),
  (146, 1),
  (180, 1),
  (181, 1),
  (182, 1),
  (183, 1),
  (184, 1),
  (185, 1),
  (186, 1),
  (187, 1),
  (60, 1)],
 [(164, 1), (145, 1), (182, 1), (4, 1), (188, 1), (189, 1)],
 [(192, 1), (193, 1), (194, 1), (195, 1), (190, 1), (191, 1)],
 [(146, 1), (196, 1), (13, 1)],
 [(1, 1),
  (197, 1),
  (198, 1),
  (199, 1),
  (200, 1),
  (201, 1),
  (202, 1),
  (203, 1),
  (204, 1),
  (77, 1),
  (206, 1),
  (205, 1),
  (16, 1),
  (146, 1),
  (184, 1),
  (13, 1)],
 [(147, 1),
  (170, 1),
  (207, 1),
  (208, 1),
  (209, 1),
  (210, 1),
  (211, 1),
  (212, 1),
  (117, 1),
  (25, 1),
  (149, 1)],
 [(4, 1), (213, 1), (183, 1)],
 [(216, 1), (217, 1), (13, 1), (214, 1), (215, 1)],
 [(35, 1), (214, 1), (218, 1), (219, 1), (220, 1), (221, 1), (222, 1)],
 [(224, 1), (225, 1), (226, 1), (1, 1), (62, 1), (30, 1), (223, 1)],
 [(227, 1), (228, 1), (229, 1), (230, 1)],
 [(24, 1), (128, 1), (94, 1), (30, 1)],
 [(231, 1),
  (232, 1),
  (233, 1),
  (234, 1),
  (235, 1),
  (236, 1),
  (237, 1),
  (238, 1),
  (173, 1),
  (60, 1),
  (61, 1)],
 [(239, 1)],
 [(1, 1),
  (36, 1),
  (169, 1),
  (43, 1),
  (240, 1),
  (241, 1),
  (242, 1),
  (243, 1),
  (244, 1),
  (30, 1),
  (94, 1),
  (245, 1)],
 [(242, 1)],
 [(242, 1), (246, 1)],
 [(2, 1)],
 [(147, 1)],
 [(1, 1)],
 [(248, 1), (30, 1), (247, 1)],
 [(1, 1)],
 [(249, 1), (250, 1), (36, 1)],
 [(169, 1), (251, 1), (117, 1)],
 [(117, 1)],
 [(256, 1), (252, 1), (253, 1), (254, 1), (255, 1)],
 [(257, 1), (106, 1), (258, 1), (1, 1)],
 [(259, 1), (260, 1)],
 [(233, 1), (261, 1), (262, 1)],
 [(13, 1)],
 [(264, 1), (147, 1), (263, 1)],
 [(73, 1), (266, 1), (107, 1), (13, 1), (265, 1), (106, 1)],
 [(128, 1), (267, 1), (268, 1), (269, 1), (103, 1)],
 [(48, 1),
  (4, 1),
  (270, 1),
  (271, 1),
  (272, 1),
  (273, 1),
  (274, 1),
  (275, 1),
  (55, 1)],
 [(1, 1),
  (3, 1),
  (150, 1),
  (169, 1),
  (206, 1),
  (15, 1),
  (276, 1),
  (277, 1),
  (278, 1),
  (279, 1),
  (280, 1),
  (26, 1)],
 [(3, 1), (1, 1), (10, 1), (209, 1), (241, 1)],
 [(281, 1), (282, 1), (283, 1), (134, 1)],
 [(14, 1), (284, 1), (285, 1), (286, 1), (287, 1)],
 [(288, 1),
  (289, 1),
  (290, 1),
  (291, 1),
  (197, 1),
  (231, 1),
  (16, 1),
  (213, 1)],
 [(55, 1)],
 [(292, 1), (52, 1), (54, 1)],
 [(4, 1), (293, 1), (30, 1)],
 [(29, 1)],
 [(1, 1), (294, 1), (295, 1), (296, 1), (297, 1), (94, 1)],
 [(298, 1), (299, 1), (300, 1), (301, 1), (15, 1)],
 [(304, 1), (135, 1), (302, 1), (303, 1), (48, 1), (305, 1), (306, 1)],
 [(295, 1), (296, 1), (298, 1), (301, 1), (114, 1), (307, 1), (308, 1)],
 [(48, 1), (312, 1), (309, 1), (310, 1), (311, 1)],
 [(114, 1)],
 [(313, 1), (12, 1)],
 [(314, 1)],
 [(315, 1), (316, 1), (317, 1), (55, 1)],
 [(320, 1),
  (321, 1),
  (322, 1),
  (323, 1),
  (1, 1),
  (295, 1),
  (296, 1),
  (299, 1),
  (280, 1),
  (318, 1),
  (319, 1)],
 [(324, 1),
  (325, 1),
  (326, 1),
  (55, 1),
  (78, 1),
  (48, 1),
  (150, 1),
  (151, 1),
  (120, 1),
  (26, 1)],
 [(26, 1), (327, 1), (7, 1)],
 [(48, 1), (328, 1), (203, 1), (329, 1)],
 [(4, 1), (330, 1), (331, 1), (332, 1), (78, 1), (150, 1), (24, 1)],
 [(48, 1), (13, 1), (334, 1), (333, 1)],
 [(103, 1),
  (203, 1),
  (335, 1),
  (336, 1),
  (337, 1),
  (338, 1),
  (244, 1),
  (39, 1)],
 [(1, 1)],
 [(267, 1), (1, 1), (339, 1)],
 [(106, 1), (340, 1)],
 [(106, 1), (340, 1), (245, 1), (342, 1), (343, 1), (341, 1)],
 [(176, 1), (344, 1), (340, 1)],
 [(345, 1)],
 [(346, 1), (214, 1)],
 [(352, 1),
  (347, 1),
  (4, 1),
  (123, 1),
  (348, 1),
  (349, 1),
  (350, 1),
  (351, 1)],
 [(353, 1), (354, 1), (355, 1), (106, 1)],
 [(214, 1),
  (1, 1),
  (123, 1),
  (356, 1),
  (357, 1),
  (358, 1),
  (359, 1),
  (360, 1),
  (361, 1),
  (362, 1),
  (55, 1),
  (13, 1),
  (363, 1),
  (307, 1),
  (150, 1),
  (151, 1),
  (4, 1),
  (90, 1),
  (347, 1),
  (26, 1)],
 [(264, 1)],
 [(307, 1), (364, 1), (365, 1), (366, 1), (367, 1)],
 [(169, 1), (4, 1)],
 [(374, 1),
  (75, 1),
  (142, 1),
  (303, 1),
  (368, 1),
  (369, 1),
  (370, 1),
  (371, 1),
  (372, 1),
  (373, 1),
  (150, 1),
  (375, 1),
  (280, 1),
  (347, 1)],
 [(1, 1), (376, 1), (377, 1), (378, 1), (379, 1), (380, 1), (381, 1)],
 [(384, 1), (2, 1), (267, 1), (382, 1), (383, 1)],
 [(385, 1), (386, 1), (387, 1), (388, 1), (1, 1), (72, 1), (14, 1), (120, 1)],
 [(395, 1),
  (389, 1),
  (390, 1),
  (391, 1),
  (392, 1),
  (393, 1),
  (394, 1),
  (75, 1),
  (207, 1)],
 [(1, 1), (286, 1)],
 [(347, 1), (396, 1), (30, 1)],
 [(1, 1), (245, 1), (398, 1), (397, 1)],
 [(169, 1), (55, 1), (4, 1), (150, 1), (399, 1)],
 [(400, 1), (4, 1)],
 [(401, 1), (197, 1), (261, 1), (402, 1), (13, 1)],
 [(37, 1),
  (403, 1),
  (404, 1),
  (405, 1),
  (406, 1),
  (407, 1),
  (408, 1),
  (409, 1),
  (410, 1),
  (411, 1),
  (412, 1),
  (413, 1),
  (218, 1)],
 [(105, 1), (4, 1), (13, 1)],
 [(416, 1), (35, 1), (414, 1), (415, 1)],
 [(417, 1), (309, 1), (205, 1), (73, 1)],
 [(128, 1), (2, 1), (419, 1), (330, 1), (418, 1), (48, 1)],
 [(1, 1), (420, 1), (421, 1), (30, 1), (407, 1)],
 [(422, 1),
  (263, 1),
  (424, 1),
  (105, 1),
  (426, 1),
  (423, 1),
  (175, 1),
  (425, 1)],
 [(4, 1), (2, 1), (427, 1), (428, 1), (429, 1)],
 [(48, 1), (4, 1), (430, 1), (431, 1), (432, 1), (433, 1), (24, 1)],
 [(1, 1)],
 [(434, 1), (435, 1), (180, 1)],
 [(144, 1), (343, 1), (4, 1), (151, 1)],
 [(436, 1), (437, 1)],
 [(438, 1)],
 [(440, 1), (441, 1), (4, 1), (13, 1), (439, 1)],
 [(0, 1), (144, 1), (442, 1), (13, 1), (143, 1)],
 [(443, 1), (444, 1)],
 [(99, 1)],
 [(182, 1), (439, 1)],
 [(147, 1), (445, 1), (446, 1), (213, 1)],
 [(4, 1), (117, 1)],
 [(1, 1)],
 [(447, 1)],
 [(143, 1)],
 [(1, 1)],
 [(173, 1)],
 [(448, 1), (4, 1)],
 [(48, 1), (450, 1), (101, 1), (449, 1), (13, 1), (16, 1), (178, 1)],
 [(451, 1),
  (452, 1),
  (453, 1),
  (454, 1),
  (455, 1),
  (456, 1),
  (457, 1),
  (170, 1),
  (13, 1),
  (173, 1),
  (141, 1),
  (180, 1),
  (117, 1),
  (21, 1)],
 [(321, 1),
  (2, 1),
  (460, 1),
  (458, 1),
  (459, 1),
  (236, 1),
  (461, 1),
  (16, 1),
  (187, 1)],
 [(100, 1),
  (2, 1),
  (4, 1),
  (137, 1),
  (106, 1),
  (299, 1),
  (141, 1),
  (370, 1),
  (462, 1),
  (463, 1),
  (464, 1),
  (465, 1),
  (114, 1),
  (467, 1),
  (468, 1),
  (466, 1),
  (121, 1)],
 [(1, 1),
  (2, 1),
  (140, 1),
  (13, 1),
  (14, 1),
  (16, 1),
  (150, 1),
  (283, 1),
  (30, 1),
  (48, 1),
  (52, 1),
  (55, 1),
  (56, 1),
  (187, 1),
  (330, 1),
  (197, 1),
  (198, 1),
  (74, 1),
  (77, 1),
  (469, 1),
  (470, 1),
  (471, 1),
  (472, 1),
  (473, 1),
  (474, 1),
  (475, 1),
  (476, 1),
  (477, 1),
  (478, 1),
  (479, 1),
  (480, 1),
  (481, 1),
  (482, 1),
  (483, 1),
  (484, 1),
  (485, 1),
  (486, 1),
  (487, 1),
  (488, 1),
  (489, 1),
  (490, 1),
  (491, 1),
  (492, 1),
  (317, 1),
  (122, 1),
  (123, 1),
  (383, 1)],
 [(117, 1)],
 [(493, 1)],
 [(73, 1), (307, 1), (494, 1), (214, 1)],
 [(150, 1), (495, 1)],
 [(170, 1), (13, 1)],
 [(496, 1), (497, 1), (62, 1)],
 [(1, 1),
  (23, 1),
  (499, 1),
  (498, 1),
  (147, 1),
  (500, 1),
  (501, 1),
  (502, 1),
  (503, 1),
  (504, 1),
  (463, 1),
  (30, 1)],
 [(1, 1), (505, 1), (506, 1), (507, 1), (508, 1), (509, 1), (510, 1)],
 [(1, 1), (50, 1), (123, 1)],
 [(1, 1)],
 [(73, 1)],
 [(100, 1)],
 [(182, 1)],
 [(440, 1)],
 [(511, 1)],
 [(21, 1)],
 [(121, 1)],
 [(512, 1), (513, 1), (514, 1), (515, 1), (77, 1)],
 [(516, 1), (517, 1)],
 [(478, 1)],
 [(518, 1)],
 [(280, 1), (182, 1)],
 [(519, 1)],
 [(4, 1), (62, 1)],
 [(50, 1), (4, 1), (142, 1)],
 [(520, 1), (394, 1), (4, 1), (62, 1)],
 [(521, 1), (4, 1), (62, 1)],
 [(261, 1), (62, 1), (463, 1)],
 [(121, 1), (522, 1)],
 [(106, 1), (365, 1), (127, 1)],
 [(1, 1), (283, 1)],
 [(1, 1),
  (100, 1),
  (12, 1),
  (523, 1),
  (524, 1),
  (525, 1),
  (526, 1),
  (16, 1),
  (50, 1),
  (182, 1)],
 [(110, 1), (62, 1)],
 [(1, 1)],
 [(345, 1)],
 [(528, 1),
  (4, 1),
  (134, 1),
  (144, 1),
  (527, 1),
  (240, 1),
  (529, 1),
  (143, 1),
  (62, 1)],
 [(117, 1)],
 [(128, 1), (120, 1), (197, 1)],
 [(128, 1), (1, 1), (4, 1), (302, 1), (530, 1), (531, 1)],
 [(4, 1),
  (532, 1),
  (533, 1),
  (534, 1),
  (535, 1),
  (536, 1),
  (537, 1),
  (538, 1)],
 [(1, 1),
  (4, 1),
  (262, 1),
  (13, 1),
  (143, 1),
  (532, 1),
  (62, 1),
  (539, 1),
  (540, 1),
  (541, 1),
  (542, 1),
  (543, 1)],
 [(544, 1), (23, 1)],
 [(544, 1),
  (545, 1),
  (546, 1),
  (547, 1),
  (548, 1),
  (549, 1),
  (9, 1),
  (523, 1),
  (207, 1),
  (182, 1),
  (62, 1)],
 [(176, 1), (77, 1), (550, 1), (143, 1)],
 [(48, 1)],
 [(1, 1), (2, 1)],
 [(552, 1), (100, 1), (551, 1)],
 [(1, 1),
  (553, 1),
  (554, 1),
  (555, 1),
  (556, 1),
  (557, 1),
  (14, 1),
  (114, 1),
  (558, 1),
  (55, 1)],
 [(560, 1), (561, 1), (559, 1)],
 [(1, 1), (562, 1)],
 [(1, 1), (560, 1), (563, 1), (564, 1), (565, 1), (566, 1)],
 [(568, 1), (569, 1), (567, 1)],
 [(1, 1), (482, 1), (10, 1), (146, 1), (570, 1), (447, 1)],
 [(1, 1),
  (187, 1),
  (4, 1),
  (529, 1),
  (176, 1),
  (209, 1),
  (50, 1),
  (150, 1),
  (571, 1),
  (572, 1),
  (573, 1),
  (574, 1)],
 [(576, 1),
  (577, 1),
  (578, 1),
  (563, 1),
  (151, 1),
  (26, 1),
  (93, 1),
  (575, 1)],
 [(1, 1), (579, 1), (580, 1), (521, 1), (563, 1), (566, 1), (26, 1), (255, 1)],
 [(581, 1), (582, 1)],
 [(147, 1), (558, 1), (583, 1)],
 [(1, 1), (203, 1), (93, 1)],
 [(584, 1),
  (585, 1),
  (586, 1),
  (587, 1),
  (588, 1),
  (563, 1),
  (345, 1),
  (123, 1)],
 [(545, 1),
  (589, 1),
  (590, 1),
  (13, 1),
  (529, 1),
  (123, 1),
  (93, 1),
  (255, 1)],
 [(4, 1), (362, 1), (591, 1), (592, 1), (593, 1), (563, 1), (150, 1), (93, 1)],
 [(1, 1),
  (151, 1),
  (589, 1),
  (48, 1),
  (594, 1),
  (595, 1),
  (596, 1),
  (597, 1),
  (598, 1),
  (599, 1),
  (600, 1),
  (601, 1),
  (602, 1),
  (603, 1),
  (93, 1)],
 [(604, 1), (4, 1), (573, 1)],
 [(608, 1), (362, 1), (150, 1), (151, 1), (605, 1), (606, 1), (607, 1)],
 [(593, 1), (82, 1), (61, 1)],
 [(609, 1), (610, 1), (164, 1), (330, 1), (463, 1), (180, 1), (30, 1)],
 [(1, 1), (611, 1), (612, 1), (613, 1), (614, 1), (73, 1)],
 [(616, 1), (617, 1), (446, 1), (615, 1)],
 [(1, 1), (618, 1), (446, 1)],
 [(619, 1), (99, 1), (107, 1), (620, 1)],
 [(1, 1), (621, 1), (622, 1)],
 [(1, 1),
  (618, 1),
  (623, 1),
  (624, 1),
  (625, 1),
  (626, 1),
  (182, 1),
  (106, 1),
  (606, 1)],
 [(512, 1), (1, 1), (2, 1), (627, 1), (4, 1)],
 [(616, 1)],
 [(4, 1), (560, 1), (563, 1), (628, 1), (629, 1), (88, 1), (30, 1), (383, 1)],
 [(4, 1), (630, 1), (631, 1)],
 [(1, 1)],
 [(48, 1)],
 [(632, 1), (1, 1)],
 [(1, 1)],
 [(1, 1), (538, 1), (633, 1)],
 [(309, 1)],
 [(136, 1), (128, 1), (244, 1), (94, 1)],
 [(330, 1), (635, 1), (4, 1), (634, 1)],
 [(636, 1), (557, 1), (606, 1), (637, 1)],
 [(13, 1)],
 [(640, 1), (558, 1), (638, 1), (639, 1)],
 [(641, 1), (642, 1), (4, 1), (584, 1), (563, 1), (93, 1)],
 [(643, 1), (644, 1), (645, 1), (589, 1), (600, 1), (602, 1)],
 [(1, 1), (2, 1), (646, 1), (647, 1), (648, 1), (606, 1)],
 [(1, 1), (4, 1), (649, 1)],
 [(103, 1), (362, 1), (13, 1), (143, 1), (150, 1), (650, 1)],
 [(1, 1), (2, 1), (585, 1)],
 [(649, 1), (2, 1), (182, 1)],
 [(1, 1), (2, 1)],
 [(1, 1),
  (262, 1),
  (649, 1),
  (651, 1),
  (652, 1),
  (653, 1),
  (654, 1),
  (655, 1),
  (656, 1),
  (657, 1),
  (658, 1),
  (659, 1),
  (660, 1),
  (34, 1),
  (560, 1),
  (564, 1),
  (565, 1),
  (567, 1),
  (440, 1),
  (327, 1),
  (584, 1),
  (204, 1),
  (589, 1),
  (602, 1),
  (93, 1),
  (613, 1),
  (234, 1),
  (109, 1),
  (499, 1),
  (117, 1),
  (632, 1)],
 [(1, 1), (2, 1), (4, 1), (661, 1), (302, 1)],
 [(176, 1), (520, 1)],
 [(182, 1)],
 [(107, 1), (4, 1)],
 [(1, 1), (145, 1), (662, 1), (663, 1), (664, 1), (665, 1), (666, 1)],
 [(187, 1), (100, 1), (263, 1)],
 [(2, 1), (100, 1), (613, 1), (561, 1), (563, 1), (667, 1)],
 [(4, 1), (669, 1), (24, 1), (668, 1), (93, 1), (670, 1)],
 [(672, 1), (4, 1), (263, 1), (207, 1), (667, 1), (93, 1), (671, 1)],
 [(673, 1), (207, 1), (4, 1), (93, 1), (671, 1)],
 [(674, 1), (675, 1), (676, 1), (589, 1), (563, 1), (667, 1)],
 [(677, 1), (678, 1), (679, 1), (563, 1), (667, 1), (93, 1)],
 [(680, 1), (237, 1), (93, 1), (589, 1)],
 [(512, 1), (4, 1), (583, 1), (142, 1), (207, 1), (627, 1)],
 [(600, 1), (43, 1), (635, 1), (681, 1)],
 [(1, 1),
  (682, 1),
  (683, 1),
  (684, 1),
  (529, 1),
  (563, 1),
  (660, 1),
  (372, 1),
  (606, 1)],
 [(61, 1), (606, 1)],
 [(128, 1), (561, 1), (613, 1), (61, 1)],
 [(1, 1), (4, 1), (10, 1), (172, 1), (685, 1), (123, 1)],
 [(93, 1), (77, 1)],
 [(4, 1), (93, 1)],
 [(62, 1), (606, 1), (61, 1), (150, 1)],
 [(686, 1)],
 [(4, 1), (93, 1)],
 [(688, 1), (298, 1), (4, 1), (93, 1), (687, 1)],
 [(689, 1), (107, 1), (567, 1)],
 [(116, 1), (362, 1), (4, 1)],
 [(610, 1), (4, 1), (13, 1), (690, 1), (691, 1), (692, 1)],
 [(128, 1),
  (100, 1),
  (146, 1),
  (397, 1),
  (50, 1),
  (693, 1),
  (4, 1),
  (284, 1),
  (383, 1)],
 [(34, 1),
  (234, 1),
  (52, 1),
  (694, 1),
  (695, 1),
  (696, 1),
  (697, 1),
  (188, 1)],
 [(1, 1), (2, 1), (616, 1), (55, 1), (698, 1), (699, 1), (317, 1)],
 [(700, 1)],
 [(584, 1), (169, 1), (589, 1), (599, 1), (187, 1), (701, 1)],
 [(704, 1), (705, 1), (78, 1), (48, 1), (702, 1), (703, 1)],
 [(147, 1)],
 [(1, 1), (114, 1), (10, 1)],
 [(1, 1), (613, 1)],
 [(1, 1), (50, 1)],
 [(128, 1), (1, 1), (93, 1)],
 [(706, 1)],
 [(1, 1), (707, 1), (613, 1)],
 [(584, 1)],
 [(1, 1)],
 [(93, 1)],
 [(608, 1), (88, 1), (563, 1), (708, 1), (557, 1)],
 [(26, 1), (550, 1)],
 [(306, 1), (315, 1), (26, 1)],
 [(480, 1), (1, 1), (562, 1), (672, 1), (389, 1)],
 [(1, 1), (2, 1), (709, 1), (710, 1), (73, 1), (267, 1)],
 [(1, 1), (4, 1), (711, 1), (584, 1), (712, 1), (563, 1), (632, 1), (573, 1)],
 [(50, 1), (4, 1), (93, 1)],
 [(714, 1), (713, 1), (674, 1), (93, 1), (48, 1)],
 [(34, 1),
  (100, 1),
  (169, 1),
  (715, 1),
  (598, 1),
  (567, 1),
  (600, 1),
  (602, 1)],
 [(716, 1), (34, 1), (4, 1), (262, 1)],
 [(718, 1), (717, 1), (150, 1)],
 [(1, 1), (435, 1), (719, 1)],
 [(1, 1), (13, 1), (563, 1), (435, 1), (182, 1), (30, 1)],
 [(48, 1), (10, 1)],
 [(1, 1)],
 [(1, 1)],
 [(561, 1)],
 [(720, 1), (649, 1), (2, 1)],
 [(1, 1),
  (290, 1),
  (613, 1),
  (721, 1),
  (73, 1),
  (210, 1),
  (561, 1),
  (722, 1),
  (723, 1),
  (724, 1),
  (348, 1)],
 [(1, 1), (2, 1), (4, 1)],
 [(264, 1), (1, 1), (2, 1)],
 [(16, 1), (4, 1), (725, 1)],
 [(16, 1), (20, 1), (30, 1), (726, 1)],
 [(20, 1), (4, 1)],
 [(298, 1), (13, 1), (180, 1), (727, 1), (571, 1), (30, 1)],
 [(728, 1), (116, 1), (4, 1), (729, 1)],
 [(610, 1), (730, 1)],
 [(128, 1), (263, 1), (144, 1), (731, 1), (732, 1), (733, 1)],
 [(562, 1), (14, 1)],
 [(13, 1), (734, 1), (447, 1)],
 [(2, 1), (499, 1), (735, 1)],
 [(736, 1), (547, 1)],
 [(737, 1), (2, 1), (739, 1), (738, 1), (77, 1), (243, 1)],
 [(740, 1), (230, 1)],
 [(435, 1), (4, 1), (741, 1), (742, 1), (397, 1)],
 [(512, 1),
  (134, 1),
  (743, 1),
  (744, 1),
  (745, 1),
  (746, 1),
  (747, 1),
  (748, 1),
  (173, 1),
  (14, 1),
  (538, 1)],
 [(750, 1), (749, 1), (694, 1), (751, 1)],
 [(752, 1), (753, 1), (53, 1), (198, 1), (271, 1)],
 [(754, 1), (755, 1), (188, 1)],
 [(694, 1), (756, 1), (757, 1), (758, 1), (60, 1), (421, 1)],
 [(757, 1), (694, 1), (759, 1)],
 [(234, 1)],
 [(760, 1), (58, 1), (300, 1)],
 [(761, 1), (29, 1), (55, 1)],
 [(141, 1), (370, 1), (4, 1), (29, 1), (55, 1)],
 [(478, 1)],
 [(4, 1)],
 [(762, 1), (74, 1)],
 [(763, 1), (764, 1)],
 [(768, 1), (106, 1), (765, 1), (766, 1), (767, 1)],
 [(769, 1), (770, 1)],
 [(4, 1), (55, 1)],
 [(771, 1), (772, 1)],
 [(470, 1)],
 [(773, 1), (774, 1)],
 [(776, 1), (4, 1), (775, 1)],
 [(1, 1), (226, 1), (777, 1), (778, 1), (779, 1), (780, 1), (781, 1), (42, 1)],
 [(1, 1), (73, 1), (397, 1), (782, 1), (783, 1), (543, 1)],
 [(784, 1), (785, 1), (50, 1), (14, 1)],
 [(225, 1),
  (73, 1),
  (13, 1),
  (48, 1),
  (786, 1),
  (787, 1),
  (788, 1),
  (150, 1),
  (602, 1)],
 [(487, 1),
  (455, 1),
  (13, 1),
  (48, 1),
  (789, 1),
  (790, 1),
  (791, 1),
  (792, 1),
  (793, 1),
  (602, 1),
  (794, 1)],
 [(450, 1),
  (230, 1),
  (557, 1),
  (499, 1),
  (795, 1),
  (796, 1),
  (797, 1),
  (798, 1),
  (479, 1)],
 [(529, 1), (799, 1)],
 [(800, 1),
  (801, 1),
  (802, 1),
  (803, 1),
  (804, 1),
  (805, 1),
  (806, 1),
  (807, 1)],
 [(808, 1), (809, 1), (810, 1), (14, 1), (20, 1), (121, 1)],
 [(4, 1), (807, 1), (811, 1), (812, 1), (813, 1), (814, 1), (48, 1), (30, 1)],
 [(73, 1), (815, 1), (816, 1), (817, 1), (818, 1), (819, 1), (317, 1)],
 [(48, 1), (42, 1), (820, 1), (821, 1)],
 [(805, 1), (13, 1), (822, 1), (823, 1), (824, 1), (825, 1), (826, 1)],
 [(557, 1), (207, 1), (733, 1), (827, 1), (828, 1), (829, 1), (830, 1)],
 [(1, 1), (50, 1), (557, 1)],
 [(169, 1), (298, 1), (831, 1), (302, 1), (1, 1)],
 [(1, 1), (169, 1)],
 [(832, 1), (10, 1)],
 [(4, 1)],
 [(833, 1), (581, 1)],
 [(672, 1), (2, 1)],
 [(210, 1), (463, 1)],
 [(834, 1), (4, 1), (103, 1)],
 [(835, 1), (782, 1)],
 [(24, 1), (73, 1), (602, 1), (4, 1)],
 [(1, 1), (459, 1), (836, 1), (207, 1)],
 [(499, 1), (207, 1)],
 [(216, 1), (837, 1), (30, 1), (799, 1)],
 [(1, 1)],
 [(262, 1)],
 [(48, 1), (838, 1)],
 [(10, 1), (4, 1)],
 [(48, 1), (840, 1), (799, 1), (180, 1), (839, 1)],
 [(1, 1), (841, 1)],
 [(121, 1)],
 [(48, 1), (842, 1), (151, 1)],
 [(602, 1), (843, 1), (844, 1), (13, 1)],
 [(1, 1), (613, 1), (845, 1), (846, 1), (847, 1), (499, 1), (116, 1)],
 [(24, 1)],
 [(848, 1), (150, 1)],
 [(849, 1), (850, 1)],
 [(795, 1), (849, 1), (851, 1), (483, 1), (852, 1)],
 [(13, 1), (853, 1), (854, 1), (855, 1), (185, 1), (669, 1)],
 [(73, 1), (13, 1), (856, 1), (342, 1), (184, 1), (857, 1), (123, 1)],
 [(600, 1), (858, 1)],
 [(2, 1), (859, 1), (13, 1)],
 [(738, 1), (100, 1)],
 [(499, 1), (4, 1)],
 [(819, 1)],
 [(10, 1), (123, 1), (100, 1)],
 [(75, 1), (71, 1)],
 [(721, 1), (788, 1), (239, 1)],
 [(1, 1)],
 [(529, 1), (13, 1), (150, 1)],
 [(240, 1), (602, 1), (499, 1), (860, 1), (13, 1)],
 [(272, 1), (184, 1), (861, 1), (862, 1), (353, 1)],
 [(864, 1), (865, 1), (2, 1), (1, 1), (73, 1), (543, 1), (863, 1)],
 [(24, 1), (866, 1)],
 [(1, 1),
  (2, 1),
  (867, 1),
  (868, 1),
  (869, 1),
  (520, 1),
  (209, 1),
  (54, 1),
  (61, 1)],
 [(2, 1),
  (875, 1),
  (870, 1),
  (871, 1),
  (872, 1),
  (873, 1),
  (874, 1),
  (43, 1),
  (876, 1),
  (52, 1),
  (327, 1)],
 [(545, 1), (4, 1), (877, 1), (878, 1)],
 [(896, 1),
  (388, 1),
  (13, 1),
  (14, 1),
  (783, 1),
  (529, 1),
  (879, 1),
  (803, 1),
  (370, 1),
  (50, 1),
  (565, 1),
  (884, 1),
  (60, 1),
  (61, 1),
  (63, 1),
  (239, 1),
  (880, 1),
  (881, 1),
  (882, 1),
  (883, 1),
  (628, 1),
  (885, 1),
  (886, 1),
  (887, 1),
  (888, 1),
  (889, 1),
  (890, 1),
  (891, 1),
  (892, 1),
  (893, 1),
  (894, 1),
  (895, 1)],
 [(897, 1), (898, 1), (899, 1), (4, 1), (262, 1), (73, 1), (282, 1)],
 [(282, 1), (571, 1), (900, 1), (901, 1), (743, 1)],
 [(4, 1),
  (902, 1),
  (903, 1),
  (904, 1),
  (905, 1),
  (330, 1),
  (562, 1),
  (691, 1),
  (906, 1),
  (511, 1)],
 [(778, 1),
  (907, 1),
  (908, 1),
  (909, 1),
  (910, 1),
  (911, 1),
  (912, 1),
  (913, 1),
  (914, 1),
  (915, 1),
  (916, 1),
  (149, 1),
  (918, 1),
  (919, 1),
  (920, 1),
  (921, 1),
  (922, 1),
  (543, 1),
  (806, 1),
  (807, 1),
  (169, 1),
  (815, 1),
  (182, 1),
  (439, 1),
  (799, 1),
  (60, 1),
  (62, 1),
  (835, 1),
  (455, 1),
  (840, 1),
  (119, 1),
  (204, 1),
  (725, 1),
  (599, 1),
  (234, 1),
  (242, 1),
  (499, 1),
  (759, 1),
  (917, 1)],
 [(4, 1),
  (684, 1),
  (13, 1),
  (782, 1),
  (626, 1),
  (499, 1),
  (923, 1),
  (924, 1),
  (573, 1)],
 [(1, 1), (459, 1), (182, 1), (23, 1), (24, 1), (925, 1)],
 [(73, 1), (146, 1)],
 [(73, 1)],
 [(333, 1), (926, 1)],
 [(4, 1)],
 [(4, 1), (343, 1)],
 [(928, 1), (929, 1), (930, 1), (14, 1), (115, 1), (927, 1)],
 [(25, 1), (754, 1), (931, 1), (932, 1), (60, 1)],
 [(25, 1), (602, 1), (933, 1)],
 [(268, 1), (13, 1), (934, 1), (183, 1)],
 [(13, 1)],
 [(936, 1), (13, 1), (935, 1)],
 [(937, 1), (933, 1)],
 [(14, 1)],
 [(616, 1), (1, 1), (180, 1)],
 [(1, 1), (938, 1), (117, 1), (486, 1)],
 [(1, 1), (115, 1)],
 [(1, 1), (147, 1)],
 [(1, 1),
  (290, 1),
  (939, 1),
  (141, 1),
  (143, 1),
  (497, 1),
  (180, 1),
  (246, 1),
  (311, 1)],
 [(61, 1), (239, 1)],
 [(1, 1)],
 [(143, 1)],
 [(602, 1), (940, 1), (941, 1)],
 [(640, 1), (36, 1), (942, 1), (943, 1)],
 [(1, 1)],
 [(944, 1), (99, 1), (285, 1), (93, 1)],
 [(945, 1), (946, 1), (311, 1), (947, 1), (143, 1)],
 [(944, 1), (4, 1), (948, 1), (22, 1), (30, 1)],
 [(649, 1), (2, 1), (458, 1), (949, 1), (1, 1)],
 [(1, 1), (262, 1), (567, 1)],
 [(951, 1), (758, 1), (950, 1), (463, 1)],
 [(952, 1), (953, 1), (954, 1), (62, 1)],
 [(1, 1)],
 [(120, 1), (955, 1), (956, 1), (147, 1)],
 [(1, 1)],
 [(960, 1),
  (961, 1),
  (962, 1),
  (675, 1),
  (13, 1),
  (798, 1),
  (631, 1),
  (957, 1),
  (958, 1),
  (959, 1)],
 [(562, 1), (963, 1), (4, 1), (461, 1)],
 [(964, 1), (13, 1)],
 [(965, 1), (173, 1)],
 [(50, 1), (610, 1), (479, 1)],
 [(101, 1), (966, 1), (967, 1), (13, 1), (240, 1), (435, 1)],
 [(24, 1), (610, 1), (4, 1)],
 [(1, 1)],
 [(143, 1)],
 [(1, 1)],
 [(1, 1), (2, 1), (151, 1)],
 [(128, 1), (207, 1)],
 [(1, 1), (4, 1), (968, 1), (969, 1), (970, 1), (116, 1), (383, 1)],
 [(971, 1), (4, 1), (13, 1)],
 [(1, 1), (117, 1), (895, 1)],
 [(512, 1),
  (321, 1),
  (931, 1),
  (976, 1),
  (933, 1),
  (974, 1),
  (75, 1),
  (972, 1),
  (973, 1),
  (14, 1),
  (749, 1),
  (48, 1),
  (977, 1),
  (403, 1),
  (309, 1),
  (182, 1),
  (975, 1),
  (286, 1)],
 [(73, 1), (978, 1), (979, 1), (980, 1), (981, 1), (183, 1), (798, 1)],
 [(50, 1)],
 [(483, 1), (105, 1), (13, 1), (982, 1), (983, 1), (984, 1), (383, 1)],
 [(1, 1), (35, 1), (23, 1)],
 [(912, 1), (985, 1), (986, 1), (987, 1), (183, 1)],
 [(178, 1), (127, 1)],
 [(61, 1)],
 [(30, 1),
  (778, 1),
  (973, 1),
  (207, 1),
  (178, 1),
  (403, 1),
  (917, 1),
  (988, 1),
  (989, 1),
  (990, 1)],
 [(992, 1),
  (1, 1),
  (994, 1),
  (995, 1),
  (996, 1),
  (229, 1),
  (993, 1),
  (819, 1),
  (55, 1),
  (666, 1),
  (997, 1),
  (991, 1)],
 [(512, 1),
  (1, 1),
  (4, 1),
  (262, 1),
  (264, 1),
  (780, 1),
  (26, 1),
  (896, 1),
  (292, 1),
  (62, 1),
  (74, 1),
  (718, 1),
  (932, 1),
  (94, 1),
  (998, 1),
  (999, 1),
  (1000, 1),
  (1001, 1),
  (490, 1),
  (1003, 1),
  (1004, 1),
  (1005, 1),
  (1006, 1),
  (1007, 1),
  (1008, 1),
  (121, 1),
  (1002, 1)],
 [(1, 1), (234, 1), (143, 1), (1009, 1), (1010, 1), (1011, 1)],
 [(499, 1), (1012, 1), (1013, 1), (1014, 1)],
 [(1, 1)],
 [(754, 1)],
 [(1016, 1), (649, 1), (10, 1), (1015, 1)],
 [(128, 1), (94, 1)],
 [(1, 1),
  (268, 1),
  (143, 1),
  (754, 1),
  (182, 1),
  (1017, 1),
  (1018, 1),
  (1019, 1),
  (1020, 1)],
 [(1024, 1),
  (1025, 1),
  (234, 1),
  (140, 1),
  (144, 1),
  (1011, 1),
  (1021, 1),
  (1022, 1),
  (1023, 1)],
 [(872, 1), (1026, 1), (75, 1)],
 [(1028, 1), (1027, 1), (403, 1), (5, 1), (105, 1)],
 [(105, 1), (941, 1)],
 [(75, 1), (180, 1), (1029, 1)],
 [(2, 1), (5, 1), (933, 1)],
 [(2, 1), (491, 1), (1030, 1), (239, 1)],
 [(616, 1)],
 [(73, 1), (1, 1), (798, 1), (1031, 1)],
 [(1, 1), (205, 1), (77, 1), (246, 1), (103, 1)],
 [(1, 1)],
 [(1032, 1), (4, 1), (565, 1)],
 [(1033, 1), (4, 1), (967, 1)],
 [(128, 1), (1034, 1), (18, 1), (602, 1)],
 [(1035, 1)],
 [(128, 1), (4, 1)],
 [(1036, 1), (478, 1)],
 [(967, 1), (918, 1), (151, 1)],
 [(1, 1),
  (2, 1),
  (1037, 1),
  (1038, 1),
  (1039, 1),
  (1040, 1),
  (1041, 1),
  (1042, 1),
  (1043, 1),
  (1044, 1),
  (1045, 1),
  (150, 1),
  (542, 1),
  (62, 1),
  (75, 1),
  (214, 1),
  (986, 1),
  (988, 1),
  (99, 1),
  (101, 1),
  (749, 1),
  (111, 1),
  (242, 1),
  (383, 1)],
 [(30, 1)],
 [(288, 1), (213, 1)],
 [(272, 1), (1, 1), (128, 1), (222, 1), (151, 1)],
 [(4, 1),
  (979, 1),
  (1046, 1),
  (1047, 1),
  (1048, 1),
  (1049, 1),
  (1050, 1),
  (1051, 1),
  (1052, 1)],
 [(720, 1),
  (36, 1),
  (1053, 1),
  (173, 1),
  (207, 1),
  (176, 1),
  (1052, 1),
  (573, 1),
  (30, 1)],
 [(35, 1), (4, 1)],
 [(15, 1), (1054, 1), (55, 1)],
 [(24, 1), (362, 1), (1055, 1)],
 [(1056, 1), (932, 1)],
 [(33, 1), (838, 1), (1057, 1)],
 [(1, 1), (1058, 1), (340, 1)],
 [(379, 1), (1059, 1), (1060, 1), (255, 1)],
 [(1061, 1), (1062, 1), (1063, 1), (1064, 1), (16, 1), (282, 1), (188, 1)],
 [(1065, 1), (4, 1)],
 [(4, 1), (590, 1)],
 [(1052, 1)],
 [(4, 1),
  (264, 1),
  (13, 1),
  (788, 1),
  (48, 1),
  (932, 1),
  (1066, 1),
  (1067, 1),
  (1068, 1),
  (1069, 1),
  (1070, 1),
  (1071, 1),
  (1072, 1),
  (1073, 1),
  (1074, 1),
  (567, 1),
  (55, 1),
  (465, 1),
  (340, 1),
  (219, 1),
  (739, 1),
  (101, 1),
  (487, 1),
  (635, 1)],
 [(1, 1), (1058, 1), (1075, 1), (1036, 1), (1076, 1)],
 [(1077, 1), (1078, 1), (1079, 1)],
 [(1080, 1), (73, 1), (602, 1), (123, 1), (673, 1)],
 [(1081, 1)],
 [(1, 1), (169, 1), (565, 1), (218, 1), (1083, 1), (1082, 1)],
 [(720, 1), (1, 1), (131, 1), (182, 1)],
 [(1, 1),
  (1072, 1),
  (246, 1),
  (183, 1),
  (1084, 1),
  (1085, 1),
  (1086, 1),
  (1087, 1)],
 [(1088, 1), (1, 1), (23, 1), (73, 1)],
 [(73, 1), (348, 1), (1087, 1)],
 [(1089, 1), (1090, 1)],
 [(1, 1), (29, 1), (102, 1), (127, 1)],
 [(128, 1),
  (1, 1),
  (2, 1),
  (1091, 1),
  (1092, 1),
  (1093, 1),
  (73, 1),
  (173, 1),
  (50, 1),
  (573, 1)],
 [(1, 1), (10, 1), (173, 1)],
 [(1, 1),
  (1094, 1),
  (1095, 1),
  (1096, 1),
  (1097, 1),
  (330, 1),
  (439, 1),
  (60, 1)],
 [(48, 1), (1, 1), (1098, 1)],
 [(529, 1), (1099, 1), (443, 1), (60, 1)],
 [(176, 1), (1, 1)],
 [(1, 1), (36, 1), (709, 1), (161, 1), (73, 1), (1100, 1), (48, 1), (121, 1)],
 [(121, 1), (10, 1), (1101, 1)],
 [(73, 1), (13, 1), (1102, 1), (1103, 1), (269, 1), (153, 1)],
 [(483, 1),
  (1104, 1),
  (1105, 1),
  (1106, 1),
  (1107, 1),
  (628, 1),
  (1109, 1),
  (214, 1),
  (1108, 1),
  (30, 1)],
 [(480, 1),
  (519, 1),
  (551, 1),
  (1117, 1),
  (56, 1),
  (754, 1),
  (1110, 1),
  (1111, 1),
  (1112, 1),
  (1113, 1),
  (58, 1),
  (1115, 1),
  (1116, 1),
  (1114, 1),
  (1118, 1),
  (767, 1)],
 [(1120, 1),
  (1, 1),
  (1121, 1),
  (169, 1),
  (12, 1),
  (1076, 1),
  (73, 1),
  (1116, 1),
  (125, 1),
  (1119, 1)],
 [(1, 1), (1122, 1), (1123, 1), (169, 1), (122, 1), (30, 1)],
 [(1, 1), (13, 1)],
 [(2, 1),
  (1124, 1),
  (1125, 1),
  (1126, 1),
  (1127, 1),
  (1128, 1),
  (1129, 1),
  (1130, 1),
  (1131, 1),
  (34, 1),
  (176, 1),
  (435, 1),
  (1076, 1),
  (119, 1)],
 [(2, 1), (932, 1), (37, 1), (73, 1), (204, 1), (1132, 1)],
 [(932, 1), (204, 1), (1133, 1), (1134, 1), (1135, 1)],
 [(1136, 1), (1, 1)],
 [(1, 1),
  (1139, 1),
  (778, 1),
  (13, 1),
  (48, 1),
  (1137, 1),
  (1138, 1),
  (1011, 1),
  (340, 1),
  (182, 1),
  (1140, 1),
  (890, 1)],
 [(613, 1),
  (561, 1),
  (1011, 1),
  (1141, 1),
  (151, 1),
  (24, 1),
  (123, 1),
  (61, 1)],
 [(4, 1), (73, 1), (13, 1), (1142, 1), (1143, 1), (123, 1)],
 [(73, 1), (1, 1)],
 [(34, 1), (4, 1), (573, 1), (1142, 1)],
 [(48, 1), (123, 1), (117, 1), (38, 1)],
 [(264, 1), (4, 1), (788, 1), (262, 1), (54, 1)],
 [(424, 1), (1, 1)],
 [(1, 1), (13, 1)],
 [(1144, 1), (449, 1), (14, 1), (1145, 1)],
 [(1, 1), (10, 1)],
 [(50, 1), (4, 1)],
 [(608, 1), (1, 1), (737, 1), (106, 1), (13, 1), (151, 1), (573, 1)],
 [(1146, 1), (1147, 1), (13, 1), (214, 1), (151, 1)],
 [(1148, 1), (635, 1), (4, 1), (60, 1)],
 [(1, 1),
  (518, 1),
  (180, 1),
  (182, 1),
  (1146, 1),
  (1149, 1),
  (1150, 1),
  (1151, 1)],
 [(1152, 1), (1153, 1), (4, 1), (169, 1), (561, 1), (1001, 1)],
 [(1, 1),
  (1154, 1),
  (4, 1),
  (10, 1),
  (77, 1),
  (848, 1),
  (561, 1),
  (788, 1),
  (317, 1)],
 [(1155, 1),
  (1156, 1),
  (1157, 1),
  (1158, 1),
  (1159, 1),
  (234, 1),
  (398, 1),
  (48, 1),
  (754, 1),
  (150, 1),
  (759, 1),
  (4, 1),
  (317, 1),
  (94, 1)],
 [(648, 1), (1, 1), (787, 1), (5, 1)],
 [(1160, 1), (4, 1), (234, 1), (28, 1), (1146, 1)],
 [(648, 1), (808, 1), (114, 1), (30, 1), (561, 1)],
 [(173, 1)],
 [(184, 1), (121, 1), (50, 1), (1, 1), (561, 1)],
 [(1161, 1), (62, 1), (1, 1)],
 [(4, 1)],
 [(464, 1), (1162, 1), (2, 1)],
 [(721, 1), (1163, 1), (1012, 1), (262, 1), (553, 1)],
 [(876, 1), (1164, 1), (73, 1)],
 [(1, 1), (228, 1)],
 [(557, 1), (1166, 1), (1167, 1), (1165, 1), (93, 1), (670, 1)],
 [(93, 1)],
 [(77, 1), (519, 1)],
 [(293, 1)],
 [(1, 1), (4, 1), (118, 1)],
 [(29, 1)],
 [(721, 1), (4, 1)],
 [(48, 1), (240, 1), (204, 1), (29, 1)],
 [(1168, 1), (94, 1)],
 [(1169, 1)],
 [(4, 1), (403, 1), (1170, 1), (1171, 1), (1172, 1), (860, 1)],
 [(1, 1),
  (14, 1),
  (48, 1),
  (1173, 1),
  (1174, 1),
  (125, 1),
  (670, 1),
  (383, 1)],
 [(1, 1),
  (801, 1),
  (73, 1),
  (362, 1),
  (1175, 1),
  (207, 1),
  (944, 1),
  (1176, 1),
  (1011, 1),
  (55, 1),
  (24, 1)],
 [(1177, 1), (2, 1), (60, 1), (214, 1)],
 [(1, 1), (16, 1), (116, 1), (1178, 1), (1179, 1), (1180, 1), (1181, 1)],
 [(150, 1), (1182, 1)],
 [(1, 1), (1182, 1), (1183, 1)],
 [(233, 1), (150, 1), (383, 1)],
 [(1184, 1),
  (1185, 1),
  (240, 1),
  (81, 1),
  (499, 1),
  (117, 1),
  (150, 1),
  (60, 1)],
 [(872, 1), (1185, 1), (1186, 1), (1180, 1)],
 [(1185, 1),
  (1187, 1),
  (1188, 1),
  (1189, 1),
  (1190, 1),
  (234, 1),
  (1181, 1),
  (255, 1)],
 [(773, 1), (150, 1), (1191, 1)],
 [(1, 1)],
 [(1192, 1), (1193, 1), (1011, 1), (150, 1), (1, 1)],
 [(128, 1),
  (1, 1),
  (1194, 1),
  (1195, 1),
  (143, 1),
  (306, 1),
  (214, 1),
  (183, 1)],
 [(1, 1),
  (37, 1),
  (73, 1),
  (1196, 1),
  (1197, 1),
  (1198, 1),
  (1199, 1),
  (147, 1)],
 [(1200, 1), (14, 1), (1175, 1)],
 [(1201, 1), (151, 1)],
 [(1202, 1), (1203, 1), (37, 1)],
 [(1204, 1)],
 [(151, 1), (23, 1)],
 [(720, 1), (1205, 1), (1175, 1)],
 [(1193, 1), (1011, 1), (143, 1)],
 [(121, 1), (1175, 1)],
 [(672, 1), (121, 1), (1206, 1)],
 [(170, 1), (602, 1), (77, 1)],
 [(1, 1), (1175, 1), (1207, 1)],
 [(1, 1), (121, 1), (1175, 1)],
 [(106, 1), (573, 1)],
 [(1043, 1)],
 [(1, 1),
  (709, 1),
  (169, 1),
  (1016, 1),
  (1202, 1),
  (1208, 1),
  (1209, 1),
  (1210, 1),
  (1211, 1),
  (1212, 1),
  (1213, 1),
  (1214, 1),
  (1215, 1)],
 [(1216, 1)],
 [(1217, 1),
  (1154, 1),
  (1219, 1),
  (1220, 1),
  (1221, 1),
  (73, 1),
  (1218, 1),
  (245, 1),
  (61, 1),
  (222, 1)],
 [(1, 1)],
 [(1, 1), (2, 1), (602, 1)],
 [(1222, 1)],
 [(808, 1)],
 [(73, 1), (228, 1)],
 [(1, 1), (1223, 1)],
 [(968, 1), (73, 1)],
 [(1224, 1), (45, 1)],
 [(1, 1)],
 [(1, 1), (698, 1), (699, 1), (207, 1)],
 [(1225, 1)],
 [(128, 1),
  (1, 1),
  (1226, 1),
  (14, 1),
  (176, 1),
  (52, 1),
  (54, 1),
  (55, 1),
  (123, 1),
  (61, 1)],
 [(4, 1), (1227, 1), (1228, 1), (77, 1), (117, 1), (698, 1), (283, 1)],
 [(10, 1), (1229, 1), (13, 1)],
 [(230, 1)],
 [(114, 1), (1230, 1), (1231, 1)],
 [(4, 1), (77, 1), (1232, 1), (1233, 1), (1234, 1), (222, 1)],
 [(1, 1), (1011, 1), (140, 1)],
 [(24, 1), (1, 1), (2, 1), (118, 1), (151, 1)],
 [(264, 1), (50, 1), (173, 1)],
 [(1, 1), (1235, 1), (1236, 1), (342, 1), (241, 1)],
 [(1237, 1), (13, 1)],
 [(1, 1),
  (2, 1),
  (7, 1),
  (872, 1),
  (226, 1),
  (1238, 1),
  (1239, 1),
  (1240, 1),
  (1241, 1),
  (1242, 1),
  (1179, 1),
  (1180, 1),
  (61, 1)],
 [(283, 1), (10, 1), (1243, 1), (77, 1), (13, 1)],
 [(180, 1)],
 [(262, 1)],
 [(1248, 1),
  (262, 1),
  (169, 1),
  (111, 1),
  (50, 1),
  (1244, 1),
  (1245, 1),
  (1246, 1),
  (1247, 1)],
 [(1, 1), (60, 1), (527, 1)],
 [(1249, 1), (573, 1), (142, 1), (1, 1)],
 [(1, 1),
  (1250, 1),
  (1251, 1),
  (1252, 1),
  (150, 1),
  (808, 1),
  (649, 1),
  (2, 1),
  (143, 1),
  (785, 1),
  (949, 1),
  (1206, 1),
  (24, 1),
  (185, 1),
  (283, 1)],
 [(4, 1), (1253, 1), (117, 1), (1206, 1), (100, 1), (283, 1)],
 [(1, 1), (1139, 1), (1254, 1)],
 [(976, 1), (248, 1), (133, 1)],
 [(185, 1)],
 [(1010, 1), (149, 1), (182, 1), (1255, 1)],
 [(1256, 1), (234, 1), (2, 1), (878, 1)],
 [(636, 1), (1, 1), (1257, 1), (1258, 1), (24, 1), (1180, 1), (1181, 1)],
 [(107, 1), (173, 1)],
 [(1259, 1), (13, 1), (182, 1)],
 [(182, 1), (1260, 1), (1261, 1), (1262, 1), (61, 1)],
 [(182, 1)],
 [(149, 1), (1263, 1)],
 [(486, 1), (774, 1), (231, 1), (999, 1), (626, 1), (470, 1)],
 [(1, 1), (4, 1), (328, 1), (1264, 1), (272, 1), (1265, 1), (83, 1)],
 [(1, 1), (4, 1), (1263, 1), (146, 1), (149, 1), (187, 1), (573, 1)],
 [(1001, 1), (1266, 1), (1267, 1), (1268, 1), (1077, 1), (1269, 1)],
 [(126, 1)],
 [(128, 1),
  (2, 1),
  (182, 1),
  (240, 1),
  (50, 1),
  (1270, 1),
  (759, 1),
  (126, 1)],
 [(153, 1), (50, 1), (77, 1)],
 [(205, 1), (110, 1), (146, 1), (1271, 1), (1272, 1), (1273, 1)],
 [(171, 1), (759, 1)],
 [(1, 1), (1274, 1)],
 [(1, 1), (2, 1), (262, 1), (590, 1), (182, 1), (1275, 1)],
 [(792, 1), (1, 1)],
 [(1, 1), (1276, 1), (1277, 1)],
 [(171, 1)],
 [(1, 1), (340, 1), (173, 1)],
 [(273, 1), (36, 1), (1278, 1), (558, 1)],
 [(48, 1)],
 [(48, 1), (26, 1), (1279, 1)],
 [(1280, 1), (1, 1)],
 [(752, 1), (1, 1), (118, 1)],
 [(993, 1), (1, 1)],
 [(1281, 1), (50, 1), (443, 1), (1282, 1)],
 [(280, 1), (649, 1), (2, 1), (118, 1)],
 [(100, 1), (949, 1)],
 [(1, 1), (3, 1), (204, 1)],
 [(1, 1), (1283, 1), (100, 1), (39, 1), (1097, 1), (330, 1)],
 [(1, 1), (100, 1), (13, 1), (48, 1), (50, 1), (1206, 1), (888, 1), (187, 1)],
 [(1284, 1), (1285, 1), (1286, 1), (103, 1), (73, 1), (698, 1), (316, 1)],
 [(26, 1), (479, 1), (1287, 1)],
 [(722, 1), (316, 1)],
 [(1288, 1), (1289, 1), (1290, 1), (347, 1)],
 [(512, 1), (967, 1), (1291, 1), (1292, 1), (1293, 1), (335, 1), (48, 1)],
 [(1, 1), (1295, 1), (1294, 1), (455, 1)],
 [(128, 1), (480, 1), (573, 1), (73, 1)],
 [(932, 1)],
 [(2, 1), (187, 1)],
 [(522, 1), (13, 1), (78, 1), (1296, 1), (1297, 1), (347, 1)],
 [(1298, 1), (1299, 1), (61, 1)],
 [(1300, 1), (1301, 1), (1302, 1)],
 [(1152, 1), (1304, 1), (1298, 1), (380, 1), (1303, 1)],
 [(1305, 1), (330, 1), (151, 1), (1306, 1), (319, 1)],
 [(1307, 1), (107, 1), (1308, 1), (557, 1)],
 [(512, 1), (1309, 1)],
 [(13, 1)],
 [(1, 1), (197, 1), (151, 1)],
 [(1, 1), (932, 1), (73, 1), (94, 1), (22, 1), (1277, 1), (1310, 1)],
 [(1312, 1), (1313, 1), (1314, 1), (347, 1), (1311, 1)],
 [(1, 1),
  (1315, 1),
  (1316, 1),
  (1317, 1),
  (1318, 1),
  (1319, 1),
  (1320, 1),
  (1321, 1),
  (1322, 1),
  (1204, 1)],
 [(1275, 1), (4, 1), (23, 1)],
 [(1275, 1)],
 [(48, 1), (4, 1), (13, 1), (182, 1)],
 [(48, 1), (2, 1), (1275, 1)],
 [(1, 1), (172, 1), (94, 1), (239, 1)],
 [(172, 1), (239, 1)],
 [(754, 1), (1323, 1), (1324, 1), (486, 1)],
 [(1, 1), (573, 1)],
 [(376, 1), (4, 1), (262, 1)],
 [(14, 1)],
 [(123, 1), (14, 1)],
 [(1, 1), (37, 1), (903, 1), (1325, 1), (14, 1), (13, 1)],
 [(30, 1)],
 [(4, 1), (1326, 1)],
 [(120, 1), (4, 1)],
 [(207, 1)],
 [(1, 1)],
 [(1, 1), (1327, 1), (262, 1), (103, 1)],
 [(48, 1), (1328, 1), (149, 1)],
 [(48, 1), (149, 1)],
 [(896, 1), (1, 1), (206, 1), (48, 1)],
 [(1089, 1), (50, 1)],
 [(50, 1)],
 [(1, 1), (50, 1)],
 [(1, 1), (73, 1), (298, 1), (173, 1), (13, 1), (529, 1), (21, 1), (182, 1)],
 [(73, 1), (55, 1), (1, 1)],
 [(720, 1), (1, 1), (299, 1), (808, 1), (1329, 1)],
 [(1, 1),
  (2, 1),
  (100, 1),
  (73, 1),
  (267, 1),
  (1324, 1),
  (205, 1),
  (48, 1),
  (1330, 1),
  (1331, 1),
  (1332, 1),
  (149, 1),
  (25, 1),
  (123, 1),
  (862, 1),
  (1333, 1)],
 [(1, 1),
  (1331, 1),
  (788, 1),
  (21, 1),
  (1334, 1),
  (1335, 1),
  (1336, 1),
  (1337, 1),
  (1338, 1),
  (1339, 1),
  (30, 1)],
 [(1, 1),
  (34, 1),
  (1163, 1),
  (645, 1),
  (519, 1),
  (873, 1),
  (55, 1),
  (695, 1),
  (551, 1),
  (16, 1),
  (754, 1),
  (694, 1),
  (791, 1),
  (1340, 1),
  (1341, 1),
  (1119, 1)],
 [(961, 1), (151, 1), (317, 1), (694, 1), (55, 1)],
 [(888, 1), (313, 1), (4, 1)],
 [(121, 1), (1, 1), (13, 1), (463, 1)],
 [(263, 1), (317, 1), (55, 1)],
 [(1344, 1),
  (1, 1),
  (4, 1),
  (72, 1),
  (1097, 1),
  (52, 1),
  (1045, 1),
  (317, 1),
  (1342, 1),
  (1343, 1)],
 [(1345, 1), (153, 1)],
 [(74, 1)],
 [(1, 1), (1346, 1)],
 [(601, 1), (114, 1), (1347, 1)],
 [(1, 1),
  (2, 1),
  (1348, 1),
  (13, 1),
  (14, 1),
  (1106, 1),
  (628, 1),
  (55, 1),
  (121, 1),
  (122, 1),
  (125, 1)],
 [(968, 1), (4, 1)],
 [(1, 1), (4, 1), (972, 1), (118, 1), (26, 1), (1338, 1), (222, 1)],
 [(1300, 1), (841, 1), (4, 1), (573, 1), (62, 1)],
 [(4, 1),
  (869, 1),
  (1350, 1),
  (1351, 1),
  (1352, 1),
  (1353, 1),
  (74, 1),
  (14, 1),
  (112, 1),
  (87, 1),
  (169, 1),
  (347, 1),
  (1354, 1),
  (1349, 1)],
 [(1, 1), (50, 1), (1355, 1), (1356, 1), (315, 1)],
 [(10, 1), (877, 1)],
 [(4, 1),
  (73, 1),
  (203, 1),
  (1357, 1),
  (877, 1),
  (272, 1),
  (1206, 1),
  (119, 1)],
 [(269, 1)],
 [(1115, 1), (4, 1), (13, 1), (15, 1), (435, 1), (347, 1)],
 [(347, 1), (203, 1), (1358, 1), (1359, 1)],
 [(1, 1), (1219, 1), (4, 1), (13, 1), (14, 1)],
 [(1, 1),
  (4, 1),
  (457, 1),
  (631, 1),
  (338, 1),
  (20, 1),
  (55, 1),
  (26, 1),
  (94, 1)],
 [(1360, 1), (1361, 1), (936, 1), (1, 1)],
 [(901, 1)],
 [(99, 1), (1362, 1), (1363, 1), (55, 1), (315, 1), (30, 1), (1119, 1)],
 [(180, 1), (1364, 1), (1365, 1), (30, 1), (13, 1)],
 [(99, 1),
  (4, 1),
  (1356, 1),
  (50, 1),
  (1366, 1),
  (1367, 1),
  (1368, 1),
  (1369, 1),
  (315, 1)],
 [(1370, 1), (316, 1)],
 [(928, 1), (1371, 1), (403, 1), (1372, 1), (1365, 1)],
 [(128, 1)],
 [(403, 1), (1373, 1), (1374, 1), (1375, 1)],
 [(1376, 1), (1147, 1), (4, 1), (1045, 1)],
 [(1377, 1),
  (1378, 1),
  (1379, 1),
  (4, 1),
  (295, 1),
  (296, 1),
  (365, 1),
  (50, 1),
  (661, 1),
  (23, 1),
  (29, 1)],
 [(4, 1), (925, 1)],
 [(10, 1)],
 [(1, 1), (123, 1), (670, 1), (246, 1)],
 [(1, 1), (13, 1)],
 [(1, 1), (90, 1), (26, 1), (39, 1)],
 [(50, 1), (187, 1)],
 [(1088, 1), (1, 1), (573, 1), (302, 1)],
 [(48, 1), (151, 1)],
 [(1, 1), (1380, 1)],
 [(315, 1), (1381, 1), (1382, 1), (77, 1)],
 [(1, 1), (1383, 1)],
 [(123, 1), (1384, 1), (178, 1), (1275, 1), (26, 1)],
 [(1, 1), (2, 1), (1287, 1), (182, 1), (440, 1), (153, 1)],
 [(1385, 1), (1, 1)],
 [(1, 1), (103, 1), (13, 1), (77, 1), (527, 1), (48, 1), (151, 1)],
 [(30, 1)],
 [(2, 1), (4, 1)],
 [(1321, 1), (1386, 1), (146, 1), (470, 1), (315, 1), (316, 1)],
 [(1, 1), (1314, 1), (1387, 1), (1388, 1), (573, 1)],
 [(244, 1), (1389, 1)],
 [(101, 1),
  (1318, 1),
  (1390, 1),
  (1391, 1),
  (1392, 1),
  (1393, 1),
  (1394, 1),
  (1395, 1),
  (622, 1)],
 [(4, 1), (150, 1)],
 [(1396, 1), (1338, 1), (83, 1), (4, 1)],
 [(48, 1), (4, 1), (1397, 1)],
 [(602, 1), (35, 1), (4, 1), (1398, 1), (207, 1)],
 [(48, 1)],
 [(1399, 1)],
 [(1400, 1)],
 [(273, 1), (1228, 1), (1401, 1)],
 [(1402, 1), (182, 1)],
 [(530, 1), (315, 1), (759, 1)],
 [(73, 1), (1362, 1), (4, 1), (198, 1), (1343, 1)],
 [(1, 1)],
 [(1408, 1),
  (1, 1),
  (1403, 1),
  (197, 1),
  (35, 1),
  (1309, 1),
  (370, 1),
  (1407, 1),
  (26, 1),
  (635, 1),
  (1404, 1),
  (1405, 1),
  (1406, 1),
  (447, 1)],
 [(2, 1), (61, 1), (567, 1)],
 [(1, 1), (262, 1), (294, 1)],
 [(1409, 1), (618, 1), (267, 1)],
 [(99, 1), (13, 1), (631, 1)],
 [(1, 1), (1410, 1), (4, 1)],
 [(1411, 1)],
 [(1, 1),
  (610, 1),
  (1412, 1),
  (1413, 1),
  (169, 1),
  (14, 1),
  (48, 1),
  (50, 1),
  (150, 1),
  (55, 1),
  (408, 1),
  (30, 1)],
 [(1, 1),
  (2, 1),
  (4, 1),
  (449, 1),
  (74, 1),
  (240, 1),
  (786, 1),
  (787, 1),
  (214, 1)],
 [(354, 1), (1414, 1), (1415, 1), (169, 1), (48, 1), (21, 1)],
 [(4, 1),
  (1416, 1),
  (1417, 1),
  (490, 1),
  (207, 1),
  (16, 1),
  (1207, 1),
  (1338, 1),
  (635, 1),
  (1418, 1)],
 [(1, 1), (36, 1), (126, 1)],
 [(1, 1),
  (1419, 1),
  (677, 1),
  (267, 1),
  (1264, 1),
  (83, 1),
  (299, 1),
  (1119, 1)],
 [(1420, 1), (83, 1), (388, 1), (1421, 1)],
 [(4, 1), (1422, 1), (1423, 1)],
 [(2, 1), (424, 1), (1424, 1), (1425, 1), (1426, 1), (1427, 1)],
 [(4, 1), (140, 1), (16, 1), (1428, 1), (1429, 1), (183, 1)],
 [(616, 1), (140, 1), (95, 1)],
 [(1432, 1), (273, 1), (1430, 1), (1431, 1), (1400, 1), (1433, 1)],
 [(1430, 1)],
 [(1433, 1), (1434, 1)],
 [(321, 1),
  (443, 1),
  (4, 1),
  (618, 1),
  (14, 1),
  (1016, 1),
  (1430, 1),
  (1431, 1),
  (1400, 1),
  (1435, 1),
  (1436, 1)],
 [(601, 1), (1437, 1), (1438, 1), (173, 1)],
 [(128, 1), (1439, 1), (4, 1), (23, 1)],
 [(196, 1), (1430, 1)],
 [(1343, 1)],
 [(515, 1), (140, 1)],
 [(1440, 1), (140, 1), (1442, 1), (52, 1), (1441, 1)],
 [(128, 1), (1386, 1), (4, 1)],
 [(24, 1), (1419, 1), (77, 1), (877, 1)],
 [(1, 1), (628, 1), (1001, 1)],
 [(128, 1),
  (1443, 1),
  (1444, 1),
  (1445, 1),
  (1446, 1),
  (1447, 1),
  (267, 1),
  (146, 1),
  (114, 1),
  (246, 1),
  (25, 1),
  (932, 1),
  (605, 1),
  (4, 1)],
 [(4, 1), (13, 1)],
 [(457, 1), (212, 1)],
 [(1448, 1), (432, 1), (1267, 1)],
 [(4, 1), (197, 1), (1449, 1), (1450, 1), (1451, 1), (187, 1)],
 [(4, 1),
  (106, 1),
  (1452, 1),
  (77, 1),
  (461, 1),
  (176, 1),
  (180, 1),
  (1453, 1)],
 [(1400, 1)],
 [(4, 1), (197, 1), (1454, 1)],
 [(432, 1), (1089, 1), (315, 1), (4, 1)],
 [(133, 1), (142, 1)],
 [(1321, 1), (340, 1), (1193, 1), (100, 1), (1, 1)],
 [(976, 1), (530, 1), (182, 1), (1455, 1)],
 [(1456, 1), (529, 1), (83, 1), (100, 1), (1, 1)],
 [(1457, 1)],
 [(362, 1), (1458, 1), (1459, 1), (1460, 1), (59, 1), (93, 1)],
 [(1362, 1), (61, 1), (1461, 1)],
 [(1106, 1), (4, 1), (1462, 1), (1367, 1)],
 [(2, 1), (4, 1), (13, 1), (1328, 1), (1463, 1), (1464, 1)],
 [(362, 1), (55, 1)],
 [(24, 1), (1465, 1), (2, 1), (160, 1), (246, 1)],
 [(1466, 1), (1467, 1), (1468, 1), (821, 1), (1469, 1)],
 [(616, 1), (1470, 1), (55, 1)],
 [(4, 1), (616, 1), (1469, 1), (55, 1), (463, 1), (1149, 1), (30, 1)],
 [(754, 1), (1471, 1), (234, 1), (319, 1)],
 [(1472, 1), (573, 1), (1254, 1)],
 [(1473, 1), (1474, 1), (61, 1)],
 [(1475, 1),
  (758, 1),
  (522, 1),
  (1298, 1),
  (1359, 1),
  (882, 1),
  (116, 1),
  (1174, 1),
  (119, 1),
  (61, 1),
  (670, 1)],
 [(512, 1), (1465, 1), (1476, 1), (54, 1), (151, 1)],
 [(1477, 1), (341, 1)],
 [(77, 1)],
 [(101, 1), (103, 1)],
 [(24, 1), (1275, 1), (30, 1)],
 [(4, 1), (1478, 1), (140, 1), (77, 1), (317, 1), (16, 1), (55, 1), (125, 1)],
 [(24, 1), (4, 1)],
 [(562, 1), (4, 1), (302, 1)],
 [(16, 1), (1, 1), (10, 1), (1479, 1)],
 [(1480, 1), (264, 1), (234, 1), (649, 1), (1447, 1)],
 [(187, 1), (1079, 1)],
 [(1481, 1), (461, 1)],
 [(1, 1), (26, 1), (187, 1), (949, 1)],
 [(50, 1), (12, 1), (581, 1)],
 [(618, 1), (670, 1), (14, 1)],
 [(16, 1)],
 [(16, 1), (106, 1), (1482, 1), (182, 1)],
 [(1, 1), (50, 1), (435, 1), (187, 1), (30, 1)],
 [(1, 1), (187, 1), (69, 1)],
 [(1, 1),
  (1282, 1),
  (1483, 1),
  (1198, 1),
  (240, 1),
  (50, 1),
  (55, 1),
  (602, 1),
  (187, 1),
  (30, 1)],
 [(480, 1), (73, 1), (146, 1), (1484, 1), (1314, 1)],
 [(16, 1),
  (100, 1),
  (39, 1),
  (12, 1),
  (1485, 1),
  (1486, 1),
  (1487, 1),
  (48, 1),
  (1, 1),
  (214, 1),
  (824, 1),
  (538, 1),
  (1455, 1),
  (282, 1)],
 [(16, 1), (281, 1), (4, 1), (30, 1), (1, 1)],
 [(74, 1), (182, 1)],
 [(169, 1), (2, 1), (54, 1), (1, 1)],
 [(1, 1),
  (294, 1),
  (104, 1),
  (169, 1),
  (170, 1),
  (1488, 1),
  (949, 1),
  (1206, 1),
  (1400, 1),
  (185, 1)],
 [(791, 1), (273, 1), (2, 1), (187, 1), (1, 1)],
 [(74, 1), (347, 1), (932, 1), (214, 1)],
 [(48, 1), (146, 1)],
 [(1, 1), (557, 1), (1489, 1), (1490, 1), (822, 1), (61, 1)],
 [(996, 1), (1130, 1), (1491, 1), (150, 1), (153, 1), (30, 1)],
 [(24, 1), (896, 1), (99, 1), (1492, 1), (55, 1)],
 [(327, 1), (112, 1), (1493, 1), (1494, 1), (216, 1), (1051, 1)],
 [(1, 1), (10, 1), (479, 1)],
 [(240, 1), (150, 1)],
 [(1, 1), (282, 1), (215, 1)],
 [(128, 1), (1, 1), (50, 1), (69, 1), (54, 1)],
 [(1130, 1), (30, 1), (366, 1), (150, 1)],
 [(709, 1), (780, 1), (180, 1), (1495, 1), (1496, 1), (383, 1)],
 [(1497, 1), (709, 1), (30, 1)],
 [(1498, 1), (4, 1), (949, 1)],
 [(2, 1), (1193, 1), (48, 1), (691, 1), (1499, 1), (830, 1)],
 [(48, 1), (499, 1), (4, 1)],
 [(1281, 1), (1338, 1), (1500, 1), (573, 1)],
 [(4, 1), (23, 1)],
 [(808, 1), (185, 1), (106, 1), (4, 1), (1501, 1)],
 [(4, 1)],
 [(601, 1), (234, 1), (4, 1), (1502, 1)],
 [(4, 1)],
 [(1504, 1), (106, 1), (4, 1), (234, 1), (1503, 1)],
 [(1505, 1), (1506, 1), (499, 1)],
 [(1507, 1), (4, 1), (743, 1), (48, 1), (50, 1), (60, 1)],
 [(602, 1), (1507, 1), (60, 1)],
 [(4, 1),
  (1509, 1),
  (1362, 1),
  (850, 1),
  (50, 1),
  (725, 1),
  (1508, 1),
  (571, 1),
  (1502, 1),
  (149, 1)],
 [(1509, 1), (1510, 1), (1511, 1)],
 [(1512, 1)],
 [(1147, 1), (1051, 1), (4, 1), (1342, 1), (1513, 1)],
 [(48, 1), (1514, 1)],
 [(234, 1), (4, 1), (178, 1)],
 [(1, 1), (1515, 1), (4, 1), (30, 1), (207, 1)],
 [(1, 1), (1516, 1)],
 [(1517, 1), (30, 1)],
 [(128, 1), (4, 1), (30, 1)],
 [(601, 1), (602, 1), (283, 1), (13, 1), (1518, 1)],
 [(4, 1), (1519, 1), (180, 1), (463, 1)],
 [(296, 1), (1134, 1), (1520, 1), (1521, 1), (1522, 1), (1523, 1), (182, 1)],
 [(131, 1), (613, 1), (103, 1), (1393, 1), (1524, 1), (1525, 1), (1526, 1)],
 [(602, 1), (557, 1), (149, 1), (1527, 1)],
 [(103, 1), (1524, 1), (1528, 1), (1529, 1), (1530, 1), (1531, 1), (884, 1)],
 [(1536, 1), (1353, 1), (1522, 1), (1532, 1), (1533, 1), (1534, 1), (1535, 1)],
 [(1537, 1), (1538, 1), (1539, 1), (282, 1), (61, 1), (543, 1)],
 [(197, 1), (1540, 1), (1541, 1), (173, 1), (243, 1), (1525, 1), (613, 1)],
 [(1352, 1), (808, 1), (283, 1), (14, 1), (1542, 1)],
 [(180, 1), (1543, 1)],
 [(1544, 1),
  (1545, 1),
  (1546, 1),
  (1547, 1),
  (77, 1),
  (754, 1),
  (440, 1),
  (350, 1)],
 [(1548, 1), (486, 1)],
 [(1552, 1),
  (198, 1),
  (1549, 1),
  (1550, 1),
  (1551, 1),
  (1520, 1),
  (1553, 1),
  (52, 1),
  (149, 1),
  (758, 1)],
 [(4, 1),
  (101, 1),
  (550, 1),
  (807, 1),
  (682, 1),
  (14, 1),
  (1554, 1),
  (822, 1)],
 [(1555, 1)],
 [(1556, 1)],
 [(73, 1), (1, 1)],
 [(4, 1), (117, 1)],
 [(1552, 1), (10, 1), (117, 1), (21, 1)],
 [(13, 1), (1557, 1)],
 [(1187, 1), (13, 1), (1206, 1), (1511, 1)],
 [(1, 1),
  (484, 1),
  (182, 1),
  (1558, 1),
  (1559, 1),
  (1560, 1),
  (1561, 1),
  (1434, 1),
  (30, 1)],
 [(1, 1),
  (1206, 1),
  (73, 1),
  (459, 1),
  (13, 1),
  (80, 1),
  (210, 1),
  (1558, 1),
  (1562, 1)],
 [(1, 1),
  (73, 1),
  (1106, 1),
  (1563, 1),
  (1564, 1),
  (1565, 1),
  (1566, 1),
  (1567, 1)],
 [(1568, 1), (1, 1), (1569, 1)],
 [(1, 1),
  (1570, 1),
  (1571, 1),
  (1569, 1),
  (1193, 1),
  (307, 1),
  (21, 1),
  (117, 1)],
 [(968, 1)],
 [(2, 1)],
 [(1572, 1), (690, 1), (52, 1), (1367, 1), (932, 1), (123, 1), (447, 1)],
 [(74, 1), (126, 1)],
 [(1, 1), (55, 1)],
 [(1, 1), (1573, 1), (342, 1), (169, 1)],
 [(1574, 1),
  (1575, 1),
  (1576, 1),
  (1577, 1),
  (1578, 1),
  (499, 1),
  (240, 1),
  (562, 1),
  (691, 1),
  (602, 1)],
 [(1, 1), (562, 1), (1579, 1), (1580, 1), (13, 1)],
 [(1, 1),
  (34, 1),
  (262, 1),
  (13, 1),
  (1582, 1),
  (1581, 1),
  (335, 1),
  (759, 1),
  (1583, 1)],
 [(240, 1), (133, 1), (13, 1), (45, 1), (1584, 1), (1585, 1), (333, 1)],
 [(1281, 1),
  (935, 1),
  (269, 1),
  (815, 1),
  (1586, 1),
  (1587, 1),
  (1588, 1),
  (602, 1)],
 [(1, 1), (602, 1), (1564, 1), (1589, 1), (1281, 1)],
 [(1, 1),
  (34, 1),
  (932, 1),
  (1409, 1),
  (73, 1),
  (1590, 1),
  (1591, 1),
  (1592, 1),
  (1593, 1),
  (602, 1),
  (1594, 1)],
 [(48, 1), (106, 1), (869, 1), (117, 1), (151, 1)],
 [(515, 1), (601, 1), (1595, 1), (1596, 1), (1597, 1), (1598, 1)],
 [(149, 1), (54, 1)],
 ...]

In [91]:
len(corpus)


Out[91]:
29597

In [92]:
import gensim

In [93]:
lda2 = gensim.models.ldamodel.LdaModel(corpus, num_topics=2,id2word = id2word,update_every=1,chunksize=20000,passes=1)


WARNING:gensim.models.ldamodel:too few updates, training might not converge; consider increasing the number of passes or iterations to improve accuracy

In [94]:
lda2.print_topics()


Out[94]:
[u'0.039*movie + 0.028*film + 0.014*time + 0.012*person + 0.010*story + 0.010*scene + 0.009*thing + 0.008*actor + 0.008*character + 0.008*role',
 u'0.056*movie + 0.040*film + 0.021*character + 0.013*story + 0.011*time + 0.010*way + 0.009*scene + 0.009*plot + 0.008*life + 0.008*year']

In [95]:
for bow in corpus[0:900:15]:
    print bow
    print lda2.get_document_topics(bow)
    print " ".join([id2word[e[0]] for e in bow])
    print "=========================================="


[(0, 1), (1, 1), (2, 1), (3, 1), (4, 1), (5, 1)]
[(0, 0.33062558805117243), (1, 0.66937441194882763)]
sure movie time opinion film change
==========================================
[(1, 1), (10, 1)]
[(0, 0.72861190362799855), (1, 0.2713880963720014)]
movie acting
==========================================
[(1, 1), (54, 1)]
[(0, 0.40955450583762837), (1, 0.59044549416237169)]
movie place
==========================================
[(1, 1), (115, 1)]
[(0, 0.71593161433662245), (1, 0.28406838566337744)]
movie comedian
==========================================
[(160, 1), (2, 1), (156, 1), (13, 1), (117, 1), (124, 1), (157, 1), (158, 1), (159, 1)]
[(0, 0.45350407414180205), (1, 0.54649592585819795)]
chuckle time figure character comedy interaction space emptiness branch
==========================================
[(227, 1), (228, 1), (229, 1), (230, 1)]
[(0, 0.2138283123986878), (1, 0.78617168760131217)]
trafficking stereotype speed soundtrack
==========================================
[(256, 1), (252, 1), (253, 1), (254, 1), (255, 1)]
[(0, 0.12566417305590061), (1, 0.87433582694409939)]
store president chain health food
==========================================
[(292, 1), (52, 1), (54, 1)]
[(0, 0.83207331693668529), (1, 0.16792668306331465)]
scenery mountain place
==========================================
[(48, 1), (328, 1), (203, 1), (329, 1)]
[(0, 0.63856264333437895), (1, 0.36143735666562105)]
story novel humanity creation
==========================================
[(307, 1), (364, 1), (365, 1), (366, 1), (367, 1)]
[(0, 0.57674521008692181), (1, 0.42325478991307813)]
today blockbuster standard b-movie winner
==========================================
[(416, 1), (35, 1), (414, 1), (415, 1)]
[(0, 0.34287423645144532), (1, 0.65712576354855456)]
detective look admiration ground)<br
==========================================
[(99, 1)]
[(0, 0.64753095771200342), (1, 0.35246904228799664)]
flick
==========================================
[(117, 1)]
[(0, 0.69041053141286168), (1, 0.30958946858713832)]
comedy
==========================================
[(21, 1)]
[(0, 0.48337736757030791), (1, 0.51662263242969209)]
romance
==========================================
[(1, 1), (283, 1)]
[(0, 0.735057815809259), (1, 0.26494218419074106)]
movie direction
==========================================
[(1, 1), (2, 1)]
[(0, 0.39382251964091625), (1, 0.60617748035908381)]
movie time
==========================================
[(545, 1), (589, 1), (590, 1), (13, 1), (529, 1), (123, 1), (93, 1), (255, 1)]
[(0, 0.077058079496353349), (1, 0.92294192050364665)]
junk wish sky character bit lot kid food
==========================================
[(4, 1), (560, 1), (563, 1), (628, 1), (629, 1), (88, 1), (30, 1), (383, 1)]
[(0, 0.074829090550731309), (1, 0.92517090944926872)]
film shaq genie thrill terribleness.<br power scene tv
==========================================
[(1, 1), (2, 1), (646, 1), (647, 1), (648, 1), (606, 1)]
[(0, 0.17919262943213707), (1, 0.8208073705678629)]
movie time skills).<br athlete sport rap
==========================================
[(672, 1), (4, 1), (263, 1), (207, 1), (667, 1), (93, 1), (671, 1)]
[(0, 0.68856397885075604), (1, 0.31143602114924407)]
word film matter end brat kid punk
==========================================
[(4, 1), (93, 1)]
[(0, 0.2039720234975948), (1, 0.7960279765024052)]
film kid
==========================================
[(128, 1), (1, 1), (93, 1)]
[(0, 0.15012838552380939), (1, 0.84987161447619064)]
way movie kid
==========================================
[(716, 1), (34, 1), (4, 1), (262, 1)]
[(0, 0.13686839106987705), (1, 0.86313160893012297)]
seen.i friend film minute
==========================================
[(298, 1), (13, 1), (180, 1), (727, 1), (571, 1), (30, 1)]
[(0, 0.58120196775803112), (1, 0.41879803224196888)]
history character moment singing cinema scene
==========================================
[(694, 1), (756, 1), (757, 1), (758, 1), (60, 1), (421, 1)]
[(0, 0.17703709301162424), (1, 0.82296290698837571)]
climber helicopter pilot trap man rescue
==========================================
[(773, 1), (774, 1)]
[(0, 0.81611268982761243), (1, 0.18388731017238755)]
sound editing
==========================================
[(557, 1), (207, 1), (733, 1), (827, 1), (828, 1), (829, 1), (830, 1)]
[(0, 0.74535019653285406), (1, 0.25464980346714589)]
music end plague field cadre devotee genius
==========================================
[(1, 1)]
[(0, 0.34472037327493082), (1, 0.65527962672506912)]
movie
==========================================
[(73, 1), (13, 1), (856, 1), (342, 1), (184, 1), (857, 1), (123, 1)]
[(0, 0.20365519133927171), (1, 0.79634480866072832)]
person character yell piece theme jerk lot
==========================================
[(1, 1), (2, 1), (867, 1), (868, 1), (869, 1), (520, 1), (209, 1), (54, 1), (61, 1)]
[(0, 0.18110416319762951), (1, 0.81889583680237055)]
movie time sequel glut concept surprise success place guy
==========================================
[(928, 1), (929, 1), (930, 1), (14, 1), (115, 1), (927, 1)]
[(0, 0.90681652139904223), (1, 0.093183478600957811)]
movement facial human performance comedian cause
==========================================
[(143, 1)]
[(0, 0.70360414209488242), (1, 0.29639585790511763)]
joke
==========================================
[(562, 1), (963, 1), (4, 1), (461, 1)]
[(0, 0.46081500340915849), (1, 0.53918499659084163)]
level bestiality film dog
==========================================
[(73, 1), (978, 1), (979, 1), (980, 1), (981, 1), (183, 1), (798, 1)]
[(0, 0.19001006916488142), (1, 0.80998993083511861)]
person habit eating cow price course goat
==========================================
[(128, 1), (94, 1)]
[(0, 0.50750675475580109), (1, 0.49249324524419885)]
way kind
==========================================
[(128, 1), (1034, 1), (18, 1), (602, 1)]
[(0, 0.32706276171212589), (1, 0.67293723828787422)]
way schmo lesson life
==========================================
[(33, 1), (838, 1), (1057, 1)]
[(0, 0.85412631502234326), (1, 0.14587368497765668)]
family hill cliche
==========================================
[(1088, 1), (1, 1), (23, 1), (73, 1)]
[(0, 0.86915388973716523), (1, 0.13084611026283482)]
hype movie job person
==========================================
[(1120, 1), (1, 1), (1121, 1), (169, 1), (12, 1), (1076, 1), (73, 1), (1116, 1), (125, 1), (1119, 1)]
[(0, 0.33790303537219185), (1, 0.6620969646278082)]
end.<br movie feast year eye murder person force drama adventure
==========================================
[(1, 1), (13, 1)]
[(0, 0.20771860644176451), (1, 0.79228139355823546)]
movie character
==========================================
[(184, 1), (121, 1), (50, 1), (1, 1), (561, 1)]
[(0, 0.15552247879106376), (1, 0.84447752120893627)]
theme cast actor movie basketball
==========================================
[(1168, 1), (94, 1)]
[(0, 0.81369702044034364), (1, 0.18630297955965636)]
saccharine kind
==========================================
[(1192, 1), (1193, 1), (1011, 1), (150, 1), (1, 1)]
[(0, 0.39013701784568322), (1, 0.60986298215431678)]
displeasure heart humor plot movie
==========================================
[(106, 1), (573, 1)]
[(0, 0.72349678208264967), (1, 0.27650321791735027)]
work reason
==========================================
[(1225, 1)]
[(0, 0.6304912709921302), (1, 0.36950872900786974)]
appearance
==========================================
[(262, 1)]
[(0, 0.27230167513219589), (1, 0.72769832486780417)]
minute
==========================================
[(182, 1)]
[(0, 0.67832446252029843), (1, 0.32167553747970162)]
thing
==========================================
[(171, 1)]
[(0, 0.28823925808170847), (1, 0.71176074191829164)]
performer
==========================================
[(26, 1), (479, 1), (1287, 1)]
[(0, 0.63037863433184926), (1, 0.36962136566815074)]
effect quality color
==========================================
[(13, 1)]
[(0, 0.28478126922733454), (1, 0.7152187307726654)]
character
==========================================
[(123, 1), (14, 1)]
[(0, 0.67789050707661513), (1, 0.32210949292338481)]
lot performance
==========================================
[(73, 1), (55, 1), (1, 1)]
[(0, 0.40903762174020591), (1, 0.59096237825979414)]
person action movie
==========================================
[(968, 1), (4, 1)]
[(0, 0.22715596482008574), (1, 0.77284403517991418)]
theater film
==========================================
[(180, 1), (1364, 1), (1365, 1), (30, 1), (13, 1)]
[(0, 0.17303254125360015), (1, 0.82696745874639987)]
moment explosion dogfight scene character
==========================================
[(48, 1), (151, 1)]
[(0, 0.23849987533471317), (1, 0.76150012466528683)]
story line
==========================================
[(1396, 1), (1338, 1), (83, 1), (4, 1)]
[(0, 0.85113378983500243), (1, 0.14886621016499743)]
yesteryear feeling serial film
==========================================
[(99, 1), (13, 1), (631, 1)]
[(0, 0.18968879584623738), (1, 0.81031120415376268)]
flick character example
==========================================
[(1430, 1)]
[(0, 0.7172742202964566), (1, 0.2827257797035434)]
creature
==========================================
[(1448, 1), (432, 1), (1267, 1)]
[(0, 0.16825291067158121), (1, 0.8317470893284189)]
excercise technique battle
==========================================
[(362, 1), (55, 1)]
[(0, 0.69453008067450384), (1, 0.30546991932549611)]
dialog action
==========================================

It looks like topic 2 is about the external factors of a movie -- who the actors are and how production went, and topic 1 is about the intrinsic factors of a movie -- the character development and plot. Examples:

* words like "movie" "actor" "film" or "budget" "film" have higher topic 2 ratings. 
* words like "relationship" "scenery" "personality" have a higher topic 1 rating

3. Run the sentiment analysis on the adjectives


In [96]:
nbdata = [ele[1] for ele in review_parts]

In [97]:
adj_raw = list(flatten_iter(nbdata))
#removinc duplicates
adj_unique = []
for i in adj_raw:
    if i not in adj_unique:
        adj_unique.append(i)

In [98]:
adjvocab = {}
for i in range(len(adj_unique)):
    adjvocab[adj_unique[i]] = i

In [99]:
adjvocab['great']


Out[99]:
7

In [100]:
len(adjvocab)


Out[100]:
7335

In [101]:
import itertools
Xarray = []
for i in nbdata: # into a review
    Xarraypre = " ".join(list(itertools.chain.from_iterable(i)))
    Xarray.append(Xarraypre)

In [102]:
# making the response array based off of the sentiment dictionary 'happiness' there is valence_avg and valence_sum
resparray = []
for index, row in maas_IMDB.iterrows():
    if row.valence_avg > 0: # need to make it binomial because that's how the calibration/cv score works
        resparray.append(1)
    else: 
        resparray.append(0)

In [103]:
print  len(Xarray), len(resparray)
print Xarray[0]


4111 4111
good second love-story romantic second annoying impressive bad great glad half-good suprised worst wonderful talented crummy single possible mere

In [104]:
from sklearn.cross_validation import train_test_split
itrain, itest = train_test_split(xrange(len(Xarray)), train_size=0.7)
mask=np.ones(len(Xarray), dtype='int')
mask[itrain]=1
mask[itest]=0
mask = (mask==1)

In [105]:
X=np.array(Xarray)
y=np.array(resparray)

In [106]:
y


Out[106]:
array([1, 1, 1, ..., 1, 0, 1])

In [107]:
def make_xy(X_col, y_col, vectorizer):
    X = vectorizer.fit_transform(X_col)
    y = y_col
    return X, y

In [108]:
"""
Function
--------
log_likelihood

Compute the log likelihood of a dataset according to 
a Naive Bayes classifier. 
The Log Likelihood is defined by

L = Sum_positive(logP(positive)) + Sum_negative(logP(negative))

Where Sum_positive indicates a sum over all positive reviews, 
and Sum_negative indicates a sum over negative reviews
    
Parameters
----------
clf : Naive Bayes classifier
x : (nexample, nfeature) array
    The input data
y : (nexample) integer array
    Whether each review is positive
"""
def log_likelihood(clf, x, y):
    prob = clf.predict_log_proba(x)
    neg = y == 0
    pos = ~neg
    return prob[neg, 0].sum() + prob[pos, 1].sum()

In [109]:
from sklearn.cross_validation import KFold

def cv_score(clf, x, y, score_func, nfold=5):
    """
    Uses 5-fold cross validation to estimate a score of a classifier
    
    Inputs
    ------
    clf : Classifier object
    x : Input feature vector
    y : Input class labels
    score_func : Function like log_likelihood, that takes (clf, x, y) as input,
                 and returns a score
                 
    Returns
    -------
    The average score obtained by splitting (x, y) into 5 folds of training and 
    test sets, fitting on the training set, and evaluating score_func on the test set
    
    Examples
    cv_score(clf, x, y, log_likelihood)
    """
    result = 0
    for train, test in KFold(y.size, nfold): # split data into train/test groups, 5 times
        clf.fit(x[train], y[train]) # fit
        result += score_func(clf, x[test], y[test]) # evaluate score function on held-out data
    return result / nfold # average

In [110]:
def calibration_plot(clf, xtest, ytest):
    prob = clf.predict_proba(xtest)[:, 1]
    outcome = ytest
    data = pd.DataFrame(dict(prob=prob, outcome=outcome))

    #group outcomes into bins of similar probability
    bins = np.linspace(0, 1, 20)
    cuts = pd.cut(prob, bins)
    binwidth = bins[1] - bins[0]
    
    #freshness ratio and number of examples in each bin
    cal = data.groupby(cuts).outcome.agg(['mean', 'count'])
    cal['pmid'] = (bins[:-1] + bins[1:]) / 2
    cal['sig'] = np.sqrt(cal.pmid * (1 - cal.pmid) / cal['count'])
        
    #the calibration plot
    ax = plt.subplot2grid((3, 1), (0, 0), rowspan=2)
    p = plt.errorbar(cal.pmid, cal['mean'], cal['sig'])
    plt.plot(cal.pmid, cal.pmid, linestyle='--', lw=1, color='k')
    plt.ylabel("Empirical P(+)")
    
    #the distribution of P(+)
    ax = plt.subplot2grid((3, 1), (2, 0), sharex=ax)
    
    plt.bar(left=cal.pmid - binwidth / 2, height=cal['count'],
            width=.95 * (bins[1] - bins[0]),
            fc=p[0].get_color())
    
    plt.xlabel("Predicted P(+)")
    plt.ylabel("Number")

In [111]:
from sklearn.feature_extraction.text import CountVectorizer
from sklearn.naive_bayes import MultinomialNB

In [112]:
#the grid of parameters to search over
alphas = [0, .1, 1, 5, 10, 50]
min_dfs = [1e-5, 1e-4, 1e-3, 1e-2, 1e-1]

#Find the best value for alpha and min_df, and the best classifier
best_alpha = None
best_min_df = None
maxscore = -np.inf

for alpha in alphas:
    for min_df in min_dfs:         
        vectorizer = CountVectorizer(vocabulary =adjvocab, min_df = min_df)       
        Xthis, Ythis = make_xy(X[mask], y[mask], vectorizer)
        clf = MultinomialNB(alpha=alpha)
        cvscore = cv_score(clf, Xthis, Ythis, log_likelihood)
        if cvscore > maxscore:
            maxscore = cvscore
            best_alpha, best_min_df = alpha, min_df

In [113]:
print "alpha: %f" % best_alpha
print "min_df: %f" % best_min_df


alpha: 0.100000
min_df: 0.000010

In [114]:
vectorizer = CountVectorizer(vocabulary =adjvocab, min_df=best_min_df)
Xnew, Ynew = make_xy(X,y, vectorizer)
xtrain, xtest, ytrain, ytest = train_test_split(Xnew, Ynew)
clf = MultinomialNB(alpha=best_alpha).fit(xtrain, ytrain)

training_accuracy = clf.score(xtrain, ytrain)
test_accuracy = clf.score(xtest, ytest)

print "Accuracy on training data: %0.2f" % (training_accuracy)
print "Accuracy on test data:     %0.2f" % (test_accuracy)

calibration_plot(clf, xtest, ytest)


Accuracy on training data: 0.97
Accuracy on test data:     0.91

4. Putting the topics and sentiment analyses together


In [115]:
vectorizer_alladj = CountVectorizer(min_df=best_min_df,vocabulary = adjvocab)
X_alladj, Y_alladj = make_xy(X[mask],y[mask], vectorizer_alladj)
clf_alladj = MultinomialNB(alpha=best_alpha).fit(X_alladj, Y_alladj)

logpositives = dict(zip(vectorizer_alladj.get_feature_names(),clf_alladj.feature_log_prob_[0]))
lognegatives = dict(zip(vectorizer_alladj.get_feature_names(),clf_alladj.feature_log_prob_[1]))

In [116]:
def calc_pplus(adjlist, lp, ln, pp,pn):
    sgivenpos = 0
    sgivenneg = 0
    for adj in adjlist:
        sgivenpos += lp[adj]
        sgivenneg += ln[adj]
    return(np.exp(sgivenpos)*pp)/(np.exp(sgivenpos)*pp + np.exp(sgivenneg)*pn)

In [117]:
reviews=[]
for index, row in maas_IMDB.iterrows():
    reviews.append(row.movie_id)

In [118]:
reviews


Out[118]:
[10027.0,
 10028.0,
 10037.0,
 11015.0,
 10544.0,
 10714.0,
 10715.0,
 10716.0,
 10717.0,
 10718.0,
 10719.0,
 10753.0,
 10754.0,
 10755.0,
 11016.0,
 10756.0,
 10757.0,
 10758.0,
 10759.0,
 10760.0,
 10775.0,
 10776.0,
 10777.0,
 10778.0,
 10779.0,
 11017.0,
 10780.0,
 10781.0,
 10782.0,
 10783.0,
 10784.0,
 10785.0,
 10786.0,
 10787.0,
 10788.0,
 10794.0,
 11018.0,
 10795.0,
 10796.0,
 10797.0,
 10798.0,
 10799.0,
 10800.0,
 10801.0,
 10802.0,
 10803.0,
 10804.0,
 11019.0,
 10805.0,
 10806.0,
 10807.0,
 10808.0,
 10809.0,
 10810.0,
 10811.0,
 10812.0,
 10826.0,
 10827.0,
 11020.0,
 10828.0,
 10829.0,
 10830.0,
 10831.0,
 10832.0,
 10833.0,
 10834.0,
 10835.0,
 10836.0,
 10837.0,
 11021.0,
 10838.0,
 10902.0,
 10903.0,
 10904.0,
 10905.0,
 10906.0,
 10907.0,
 10908.0,
 10909.0,
 10910.0,
 11022.0,
 10911.0,
 10912.0,
 10913.0,
 10914.0,
 11035.0,
 11088.0,
 11089.0,
 11090.0,
 11091.0,
 11092.0,
 11023.0,
 11093.0,
 11118.0,
 11119.0,
 11120.0,
 11158.0,
 11159.0,
 11160.0,
 11161.0,
 11162.0,
 11163.0,
 11024.0,
 11164.0,
 11165.0,
 11166.0,
 11167.0,
 11168.0,
 11240.0,
 11241.0,
 11242.0,
 11243.0,
 11244.0,
 10038.0,
 11025.0,
 11245.0,
 11246.0,
 11247.0,
 11248.0,
 11249.0,
 11250.0,
 11251.0,
 11252.0,
 11253.0,
 11254.0,
 11026.0,
 11255.0,
 11256.0,
 11257.0,
 11258.0,
 11307.0,
 11308.0,
 11309.0,
 11337.0,
 11338.0,
 11393.0,
 11027.0,
 11394.0,
 11395.0,
 11527.0,
 11532.0,
 11649.0,
 11650.0,
 11651.0,
 11652.0,
 11653.0,
 11654.0,
 11028.0,
 11655.0,
 11656.0,
 11657.0,
 11658.0,
 11659.0,
 11660.0,
 11661.0,
 11662.0,
 11663.0,
 11677.0,
 11029.0,
 11678.0,
 11679.0,
 11680.0,
 11681.0,
 11682.0,
 11683.0,
 11684.0,
 11685.0,
 11686.0,
 11687.0,
 11030.0,
 11688.0,
 11689.0,
 11690.0,
 11744.0,
 11767.0,
 11768.0,
 11769.0,
 11827.0,
 11828.0,
 11829.0,
 11031.0,
 11830.0,
 11831.0,
 11832.0,
 11833.0,
 11834.0,
 11835.0,
 11836.0,
 11837.0,
 11861.0,
 11862.0,
 11032.0,
 11863.0,
 11864.0,
 11920.0,
 11968.0,
 11969.0,
 11970.0,
 11971.0,
 12040.0,
 12041.0,
 12042.0,
 11033.0,
 12043.0,
 12044.0,
 12045.0,
 12046.0,
 12047.0,
 12051.0,
 12052.0,
 12053.0,
 12054.0,
 12136.0,
 11195.0,
 12137.0,
 12138.0,
 12139.0,
 12184.0,
 12185.0,
 12186.0,
 12187.0,
 12188.0,
 12189.0,
 12190.0,
 10039.0,
 11196.0,
 12191.0,
 12192.0,
 12193.0,
 12234.0,
 12235.0,
 12236.0,
 12264.0,
 12265.0,
 12306.0,
 12307.0,
 11197.0,
 12308.0,
 12309.0,
 12310.0,
 12311.0,
 12312.0,
 12313.0,
 12314.0,
 12315.0,
 12316.0,
 12332.0,
 11198.0,
 12333.0,
 12334.0,
 12335.0,
 12346.0,
 12347.0,
 12348.0,
 12349.0,
 12350.0,
 12351.0,
 12352.0,
 11199.0,
 12353.0,
 12354.0,
 12355.0,
 12356.0,
 12357.0,
 12358.0,
 12377.0,
 12378.0,
 12379.0,
 12380.0,
 11200.0,
 12405.0,
 12406.0,
 12425.0,
 12426.0,
 12427.0,
 12428.0,
 12429.0,
 12430.0,
 12431.0,
 12432.0,
 11201.0,
 12433.0,
 12434.0,
 12435.0,
 12436.0,
 12437.0,
 12438.0,
 12439.0,
 12458.0,
 12459.0,
 12460.0,
 11202.0,
 12461.0,
 12462.0,
 12463.0,
 12464.0,
 12465.0,
 12466.0,
 12467.0,
 12468.0,
 12469.0,
 12470.0,
 11203.0,
 12471.0,
 12498.0,
 12499.0,
 7455.0,
 7456.0,
 7457.0,
 7458.0,
 7459.0,
 7460.0,
 7461.0,
 11204.0,
 7462.0,
 7463.0,
 7464.0,
 7465.0,
 7466.0,
 7467.0,
 7468.0,
 7477.0,
 7478.0,
 7479.0,
 11418.0,
 7480.0,
 7481.0,
 7482.0,
 7483.0,
 7484.0,
 7485.0,
 7486.0,
 7487.0,
 7488.0,
 7496.0,
 10040.0,
 11419.0,
 7497.0,
 7498.0,
 7499.0,
 7500.0,
 7501.0,
 7502.0,
 7503.0,
 7504.0,
 7505.0,
 7506.0,
 11420.0,
 7507.0,
 7508.0,
 7509.0,
 7510.0,
 7511.0,
 7512.0,
 7513.0,
 7734.0,
 7735.0,
 7736.0,
 11421.0,
 7737.0,
 7738.0,
 7739.0,
 7740.0,
 7741.0,
 7742.0,
 7743.0,
 7744.0,
 7768.0,
 7769.0,
 11422.0,
 7770.0,
 7771.0,
 7772.0,
 7773.0,
 7774.0,
 7778.0,
 7779.0,
 7780.0,
 7781.0,
 7782.0,
 11423.0,
 7783.0,
 7784.0,
 7812.0,
 7813.0,
 7814.0,
 7815.0,
 7816.0,
 7817.0,
 7818.0,
 7819.0,
 11424.0,
 7820.0,
 7821.0,
 7822.0,
 7823.0,
 7824.0,
 7825.0,
 7826.0,
 7827.0,
 7911.0,
 7912.0,
 11425.0,
 7913.0,
 7914.0,
 7915.0,
 7916.0,
 7980.0,
 7981.0,
 7982.0,
 8092.0,
 8093.0,
 8094.0,
 11426.0,
 8095.0,
 8096.0,
 8097.0,
 8098.0,
 8099.0,
 8100.0,
 8185.0,
 8186.0,
 8187.0,
 8188.0,
 11427.0,
 8189.0,
 8190.0,
 8191.0,
 8192.0,
 8193.0,
 8194.0,
 8195.0,
 8196.0,
 8197.0,
 8209.0,
 11428.0,
 8210.0,
 8211.0,
 8212.0,
 8265.0,
 8266.0,
 8267.0,
 8268.0,
 8338.0,
 8409.0,
 8410.0,
 10041.0,
 11429.0,
 8411.0,
 8412.0,
 8413.0,
 8414.0,
 8415.0,
 8416.0,
 8417.0,
 8418.0,
 8419.0,
 8451.0,
 11430.0,
 8586.0,
 8587.0,
 8588.0,
 8589.0,
 8590.0,
 8591.0,
 8592.0,
 8593.0,
 8666.0,
 8667.0,
 11431.0,
 8728.0,
 8729.0,
 8730.0,
 8776.0,
 8777.0,
 8778.0,
 8779.0,
 8780.0,
 8781.0,
 8782.0,
 11432.0,
 8783.0,
 8784.0,
 8785.0,
 8786.0,
 8787.0,
 8788.0,
 8804.0,
 8805.0,
 8806.0,
 8871.0,
 11617.0,
 8872.0,
 8873.0,
 8874.0,
 8875.0,
 8876.0,
 8877.0,
 9026.0,
 9027.0,
 9028.0,
 9029.0,
 11618.0,
 9030.0,
 9031.0,
 9041.0,
 9042.0,
 9043.0,
 9044.0,
 9045.0,
 9046.0,
 9415.0,
 9521.0,
 11619.0,
 9522.0,
 9523.0,
 9623.0,
 9624.0,
 9625.0,
 9626.0,
 9627.0,
 9628.0,
 9629.0,
 9630.0,
 11620.0,
 9631.0,
 9752.0,
 9788.0,
 9789.0,
 9790.0,
 9791.0,
 9844.0,
 9845.0,
 9970.0,
 9971.0,
 11621.0,
 9972.0,
 9973.0,
 9974.0,
 9975.0,
 9976.0,
 9977.0,
 0.0,
 10113.0,
 10114.0,
 10115.0,
 11622.0,
 10116.0,
 10117.0,
 10118.0,
 10119.0,
 10120.0,
 10121.0,
 10122.0,
 10123.0,
 10124.0,
 10125.0,
 10042.0,
 11623.0,
 10126.0,
 10127.0,
 10128.0,
 10129.0,
 10130.0,
 10131.0,
 10132.0,
 10133.0,
 10134.0,
 10135.0,
 11624.0,
 10136.0,
 10137.0,
 10138.0,
 10876.0,
 10877.0,
 10878.0,
 10879.0,
 10880.0,
 10881.0,
 10882.0,
 11625.0,
 10883.0,
 10884.0,
 10885.0,
 10886.0,
 10887.0,
 10888.0,
 10889.0,
 10890.0,
 10891.0,
 10892.0,
 11626.0,
 10893.0,
 10894.0,
 10895.0,
 10896.0,
 10897.0,
 10900.0,
 10901.0,
 10902.0,
 10903.0,
 10904.0,
 11627.0,
 10905.0,
 10906.0,
 10907.0,
 10908.0,
 10909.0,
 10910.0,
 10911.0,
 10912.0,
 10913.0,
 10914.0,
 11628.0,
 10915.0,
 10916.0,
 10917.0,
 10918.0,
 10919.0,
 10920.0,
 10921.0,
 10922.0,
 10.0,
 11374.0,
 11629.0,
 11375.0,
 11376.0,
 11377.0,
 11378.0,
 11379.0,
 11380.0,
 11381.0,
 11382.0,
 11383.0,
 11384.0,
 11630.0,
 11385.0,
 11386.0,
 11387.0,
 11388.0,
 11389.0,
 11390.0,
 11391.0,
 11392.0,
 11393.0,
 11394.0,
 11631.0,
 11395.0,
 11396.0,
 11397.0,
 11398.0,
 11399.0,
 11400.0,
 11401.0,
 11402.0,
 11403.0,
 11404.0,
 11632.0,
 11405.0,
 11406.0,
 11407.0,
 11408.0,
 11409.0,
 11410.0,
 11411.0,
 11412.0,
 11413.0,
 11414.0,
 10043.0,
 11633.0,
 11415.0,
 11416.0,
 11417.0,
 11418.0,
 11419.0,
 11420.0,
 11467.0,
 11468.0,
 11469.0,
 11470.0,
 11634.0,
 11471.0,
 11472.0,
 11640.0,
 11641.0,
 11642.0,
 11643.0,
 11644.0,
 11645.0,
 11646.0,
 11647.0,
 11635.0,
 11648.0,
 11649.0,
 11650.0,
 11651.0,
 11652.0,
 11653.0,
 11654.0,
 11655.0,
 11656.0,
 11657.0,
 11636.0,
 11658.0,
 11659.0,
 11660.0,
 11661.0,
 11662.0,
 11663.0,
 11664.0,
 11665.0,
 11666.0,
 11667.0,
 11637.0,
 11668.0,
 11669.0,
 1170.0,
 1171.0,
 1172.0,
 1173.0,
 1174.0,
 1175.0,
 1176.0,
 1177.0,
 11638.0,
 1178.0,
 1179.0,
 1180.0,
 1181.0,
 1182.0,
 11909.0,
 11910.0,
 11911.0,
 11912.0,
 11913.0,
 11639.0,
 11914.0,
 11915.0,
 11916.0,
 11917.0,
 11918.0,
 11919.0,
 11920.0,
 11921.0,
 11922.0,
 11923.0,
 11640.0,
 11924.0,
 11925.0,
 11926.0,
 11927.0,
 11928.0,
 11929.0,
 11930.0,
 11931.0,
 11932.0,
 11933.0,
 11685.0,
 11934.0,
 11935.0,
 11936.0,
 11937.0,
 11938.0,
 11.0,
 12177.0,
 12178.0,
 12179.0,
 12180.0,
 11686.0,
 12181.0,
 12182.0,
 12183.0,
 12184.0,
 12185.0,
 12186.0,
 12187.0,
 12188.0,
 12189.0,
 12190.0,
 10044.0,
 11687.0,
 12191.0,
 12192.0,
 12193.0,
 12194.0,
 12195.0,
 12196.0,
 12197.0,
 1291.0,
 1292.0,
 12.0,
 11688.0,
 1327.0,
 1328.0,
 1329.0,
 1330.0,
 1331.0,
 1332.0,
 1333.0,
 1334.0,
 13.0,
 14.0,
 11689.0,
 15.0,
 1620.0,
 1621.0,
 1622.0,
 1623.0,
 1624.0,
 1625.0,
 1626.0,
 1627.0,
 1628.0,
 11690.0,
 1629.0,
 1630.0,
 1631.0,
 1632.0,
 1633.0,
 1634.0,
 1635.0,
 1697.0,
 1698.0,
 1699.0,
 11691.0,
 16.0,
 1700.0,
 1701.0,
 1702.0,
 1703.0,
 1704.0,
 1705.0,
 1826.0,
 1827.0,
 1828.0,
 11692.0,
 1829.0,
 1830.0,
 1831.0,
 1832.0,
 1833.0,
 1834.0,
 1835.0,
 1836.0,
 1837.0,
 1838.0,
 11693.0,
 1839.0,
 1840.0,
 1841.0,
 1842.0,
 1843.0,
 1844.0,
 1845.0,
 1846.0,
 1847.0,
 1848.0,
 11694.0,
 1849.0,
 1850.0,
 1851.0,
 1852.0,
 1853.0,
 1854.0,
 1855.0,
 1.0,
 2038.0,
 2039.0,
 11807.0,
 2040.0,
 2041.0,
 2042.0,
 2043.0,
 2044.0,
 2045.0,
 2046.0,
 2047.0,
 2048.0,
 2049.0,
 11808.0,
 2050.0,
 2051.0,
 2052.0,
 2053.0,
 2054.0,
 2055.0,
 2056.0,
 2057.0,
 2058.0,
 2059.0,
 10045.0,
 11809.0,
 2060.0,
 2061.0,
 2062.0,
 2063.0,
 2064.0,
 2065.0,
 2066.0,
 2067.0,
 2184.0,
 2185.0,
 11810.0,
 2186.0,
 2187.0,
 2188.0,
 2189.0,
 2190.0,
 2191.0,
 2192.0,
 2193.0,
 2194.0,
 2195.0,
 11811.0,
 2196.0,
 2197.0,
 2198.0,
 2199.0,
 2200.0,
 2201.0,
 2202.0,
 2203.0,
 2204.0,
 2205.0,
 11812.0,
 2206.0,
 2207.0,
 2277.0,
 2278.0,
 2279.0,
 2280.0,
 2281.0,
 2282.0,
 2283.0,
 2284.0,
 11813.0,
 2285.0,
 2286.0,
 2287.0,
 2288.0,
 2289.0,
 2290.0,
 2291.0,
 2292.0,
 2293.0,
 2294.0,
 11814.0,
 2295.0,
 2296.0,
 2307.0,
 2308.0,
 2309.0,
 2310.0,
 2311.0,
 2312.0,
 2313.0,
 2314.0,
 11815.0,
 2315.0,
 2316.0,
 2317.0,
 2318.0,
 2319.0,
 2320.0,
 2321.0,
 2322.0,
 2323.0,
 2324.0,
 11816.0,
 2325.0,
 2326.0,
 2327.0,
 2328.0,
 2329.0,
 2330.0,
 2331.0,
 2332.0,
 2333.0,
 2334.0,
 11817.0,
 2335.0,
 2336.0,
 2378.0,
 2837.0,
 2838.0,
 2839.0,
 2840.0,
 2841.0,
 2842.0,
 2843.0,
 11818.0,
 2844.0,
 2845.0,
 2846.0,
 2847.0,
 2848.0,
 2849.0,
 2850.0,
 2851.0,
 2852.0,
 ...]

In [119]:
len(review_parts),len(reviews)


Out[119]:
(4111, 4111)

In [120]:
def choose_topic(ldamodel, bow):
    tee = lda2.get_document_topics(bow)
    if len(tee)==2:
        t1,t2=tee
        if t2[1] >= t1[1]:#get higher probability topic
            topicis=t2[0]
        else:
            topicis=t1[0]
    elif len(tee)==1:#if only one was provided its very high probability. Take it
        teetuple=tee[0]
        topicis=teetuple[0]
    return topicis

In [121]:
priorp = np.mean(resparray)
priorn = 1 - priorp
priorp, priorn


Out[121]:
(0.92897105327171003, 0.071028946728289966)

In [122]:
counter=0
reviewdict={}
for i, rid in enumerate(reviews):
    rlist=[]
    nlist, alist = review_parts[i]
    ln=len(alist)
    localbow=corpus[counter:counter+ln]
    for bow, adj, noun in zip(localbow, alist, nlist):
#         doc=" ".join([id2word[e[0]] for e in bow])
        pplus=calc_pplus(adj, logpositives, lognegatives, priorp, priorn)
        topicis=choose_topic(lda2, bow)
        ldict={"topic": topicis, 'pplus':pplus}
        rlist.append(ldict)
    reviewdict[str(int(rid))]=rlist
    counter=counter+ln
    print i, rid, ln, counter


0 10027.0 13 13
1 10028.0 6 19
2 10037.0 6 25
3 11015.0 7 32
4 10544.0 13 45
5 10714.0 6 51
6 10715.0 5 56
7 10716.0 18 74
8 10717.0 8 82
9 10718.0 8 90
10 10719.0 6 96
11 10753.0 3 99
12 10754.0 2 101
13 10755.0 3 104
14 11016.0 4 108
15 10756.0 23 131
16 10757.0 5 136
17 10758.0 4 140
18 10759.0 6 146
19 10760.0 11 157
20 10775.0 5 162
21 10776.0 7 169
22 10777.0 4 173
23 10778.0 1 174
24 10779.0 5 179
25 11017.0 1 180
26 10780.0 0 180
27 10781.0 6 186
28 10782.0 2 188
29 10783.0 5 193
30 10784.0 3 196
31 10785.0 7 203
32 10786.0 6 209
33 10787.0 5 214
34 10788.0 11 225
35 10794.0 2 227
36 11018.0 1 228
37 10795.0 5 233
38 10796.0 1 234
39 10797.0 4 238
40 10798.0 13 251
41 10799.0 7 258
42 10800.0 3 261
43 10801.0 7 268
44 10802.0 8 276
45 10803.0 1 277
46 10804.0 29 306
47 11019.0 2 308
48 10805.0 4 312
49 10806.0 5 317
50 10807.0 8 325
51 10808.0 5 330
52 10809.0 3 333
53 10810.0 3 336
54 10811.0 2 338
55 10812.0 2 340
56 10826.0 6 346
57 10827.0 11 357
58 11020.0 19 376
59 10828.0 8 384
60 10829.0 8 392
61 10830.0 4 396
62 10831.0 3 399
63 10832.0 3 402
64 10833.0 4 406
65 10834.0 5 411
66 10835.0 6 417
67 10836.0 12 429
68 10837.0 6 435
69 11021.0 4 439
70 10838.0 6 445
71 10902.0 5 450
72 10903.0 11 461
73 10904.0 2 463
74 10905.0 3 466
75 10906.0 2 468
76 10907.0 8 476
77 10908.0 10 486
78 10909.0 6 492
79 10910.0 11 503
80 11022.0 2 505
81 10911.0 3 508
82 10912.0 5 513
83 10913.0 12 525
84 10914.0 9 534
85 11035.0 13 547
86 11088.0 1 548
87 11089.0 4 552
88 11090.0 1 553
89 11091.0 2 555
90 11092.0 12 567
91 11023.0 5 572
92 11093.0 5 577
93 11118.0 5 582
94 11119.0 10 592
95 11120.0 10 602
96 11158.0 9 611
97 11159.0 4 615
98 11160.0 4 619
99 11161.0 28 647
100 11162.0 3 650
101 11163.0 8 658
102 11024.0 4 662
103 11164.0 5 667
104 11165.0 4 671
105 11166.0 8 679
106 11167.0 7 686
107 11168.0 5 691
108 11240.0 9 700
109 11241.0 11 711
110 11242.0 6 717
111 11243.0 21 738
112 11244.0 18 756
113 10038.0 13 769
114 11025.0 11 780
115 11245.0 12 792
116 11246.0 13 805
117 11247.0 9 814
118 11248.0 5 819
119 11249.0 14 833
120 11250.0 2 835
121 11251.0 13 848
122 11252.0 21 869
123 11253.0 8 877
124 11254.0 3 880
125 11026.0 17 897
126 11255.0 5 902
127 11256.0 9 911
128 11257.0 4 915
129 11258.0 8 923
130 11307.0 2 925
131 11308.0 6 931
132 11309.0 4 935
133 11337.0 24 959
134 11338.0 15 974
135 11393.0 10 984
136 11027.0 5 989
137 11394.0 8 997
138 11395.0 8 1005
139 11527.0 4 1009
140 11532.0 15 1024
141 11649.0 1 1025
142 11650.0 9 1034
143 11651.0 6 1040
144 11652.0 9 1049
145 11653.0 2 1051
146 11654.0 4 1055
147 11028.0 6 1061
148 11655.0 13 1074
149 11656.0 8 1082
150 11657.0 3 1085
151 11658.0 5 1090
152 11659.0 11 1101
153 11660.0 6 1107
154 11661.0 9 1116
155 11662.0 6 1122
156 11663.0 1 1123
157 11677.0 3 1126
158 11029.0 9 1135
159 11678.0 11 1146
160 11679.0 5 1151
161 11680.0 9 1160
162 11681.0 5 1165
163 11682.0 3 1168
164 11683.0 7 1175
165 11684.0 6 1181
166 11685.0 20 1201
167 11686.0 18 1219
168 11687.0 10 1229
169 11030.0 14 1243
170 11688.0 11 1254
171 11689.0 22 1276
172 11690.0 6 1282
173 11744.0 11 1293
174 11767.0 7 1300
175 11768.0 13 1313
176 11769.0 19 1332
177 11827.0 7 1339
178 11828.0 5 1344
179 11829.0 8 1352
180 11031.0 8 1360
181 11830.0 11 1371
182 11831.0 9 1380
183 11832.0 3 1383
184 11833.0 4 1387
185 11834.0 3 1390
186 11835.0 8 1398
187 11836.0 4 1402
188 11837.0 4 1406
189 11861.0 14 1420
190 11862.0 9 1429
191 11032.0 1 1430
192 11863.0 12 1442
193 11864.0 8 1450
194 11920.0 5 1455
195 11968.0 10 1465
196 11969.0 4 1469
197 11970.0 5 1474
198 11971.0 10 1484
199 12040.0 7 1491
200 12041.0 7 1498
201 12042.0 4 1502
202 11033.0 11 1513
203 12043.0 5 1518
204 12044.0 7 1525
205 12045.0 12 1537
206 12046.0 7 1544
207 12047.0 8 1552
208 12051.0 9 1561
209 12052.0 8 1569
210 12053.0 8 1577
211 12054.0 5 1582
212 12136.0 6 1588
213 11195.0 10 1598
214 12137.0 3 1601
215 12138.0 3 1604
216 12139.0 9 1613
217 12184.0 2 1615
218 12185.0 3 1618
219 12186.0 5 1623
220 12187.0 7 1630
221 12188.0 14 1644
222 12189.0 4 1648
223 12190.0 4 1652
224 10039.0 10 1662
225 11196.0 10 1672
226 12191.0 18 1690
227 12192.0 21 1711
228 12193.0 21 1732
229 12234.0 2 1734
230 12235.0 3 1737
231 12236.0 7 1744
232 12264.0 5 1749
233 12265.0 1 1750
234 12306.0 4 1754
235 12307.0 2 1756
236 11197.0 5 1761
237 12308.0 4 1765
238 12309.0 4 1769
239 12310.0 8 1777
240 12311.0 4 1781
241 12312.0 13 1794
242 12313.0 5 1799
243 12314.0 9 1808
244 12315.0 3 1811
245 12316.0 4 1815
246 12332.0 4 1819
247 11198.0 10 1829
248 12333.0 2 1831
249 12334.0 3 1834
250 12335.0 2 1836
251 12346.0 8 1844
252 12347.0 7 1851
253 12348.0 4 1855
254 12349.0 9 1864
255 12350.0 4 1868
256 12351.0 5 1873
257 12352.0 3 1876
258 11199.0 7 1883
259 12353.0 0 1883
260 12354.0 3 1886
261 12355.0 7 1893
262 12356.0 3 1896
263 12357.0 6 1902
264 12358.0 5 1907
265 12377.0 11 1918
266 12378.0 8 1926
267 12379.0 9 1935
268 12380.0 4 1939
269 11200.0 8 1947
270 12405.0 5 1952
271 12406.0 12 1964
272 12425.0 12 1976
273 12426.0 3 1979
274 12427.0 5 1984
275 12428.0 3 1987
276 12429.0 3 1990
277 12430.0 11 2001
278 12431.0 15 2016
279 12432.0 4 2020
280 11201.0 8 2028
281 12433.0 6 2034
282 12434.0 6 2040
283 12435.0 6 2046
284 12436.0 15 2061
285 12437.0 9 2070
286 12438.0 7 2077
287 12439.0 6 2083
288 12458.0 7 2090
289 12459.0 8 2098
290 12460.0 5 2103
291 11202.0 4 2107
292 12461.0 3 2110
293 12462.0 2 2112
294 12463.0 5 2117
295 12464.0 2 2119
296 12465.0 6 2125
297 12466.0 7 2132
298 12467.0 5 2137
299 12468.0 7 2144
300 12469.0 6 2150
301 12470.0 17 2167
302 11203.0 17 2184
303 12471.0 2 2186
304 12498.0 7 2193
305 12499.0 4 2197
306 7455.0 2 2199
307 7456.0 6 2205
308 7457.0 5 2210
309 7458.0 21 2231
310 7459.0 3 2234
311 7460.0 2 2236
312 7461.0 18 2254
313 11204.0 2 2256
314 7462.0 6 2262
315 7463.0 3 2265
316 7464.0 7 2272
317 7465.0 3 2275
318 7466.0 4 2279
319 7467.0 15 2294
320 7468.0 10 2304
321 7477.0 2 2306
322 7478.0 4 2310
323 7479.0 3 2313
324 11418.0 8 2321
325 7480.0 13 2334
326 7481.0 3 2337
327 7482.0 2 2339
328 7483.0 9 2348
329 7484.0 1 2349
330 7485.0 7 2356
331 7486.0 1 2357
332 7487.0 7 2364
333 7488.0 6 2370
334 7496.0 2 2372
335 10040.0 12 2384
336 11419.0 4 2388
337 7497.0 2 2390
338 7498.0 4 2394
339 7499.0 5 2399
340 7500.0 6 2405
341 7501.0 4 2409
342 7502.0 6 2415
343 7503.0 19 2434
344 7504.0 8 2442
345 7505.0 6 2448
346 7506.0 3 2451
347 11420.0 5 2456
348 7507.0 6 2462
349 7508.0 9 2471
350 7509.0 9 2480
351 7510.0 8 2488
352 7511.0 7 2495
353 7512.0 5 2500
354 7513.0 2 2502
355 7734.0 5 2507
356 7735.0 18 2525
357 7736.0 10 2535
358 11421.0 3 2538
359 7737.0 2 2540
360 7738.0 1 2541
361 7739.0 5 2546
362 7740.0 16 2562
363 7741.0 15 2577
364 7742.0 15 2592
365 7743.0 2 2594
366 7744.0 16 2610
367 7768.0 5 2615
368 7769.0 9 2624
369 11422.0 9 2633
370 7770.0 7 2640
371 7771.0 3 2643
372 7772.0 9 2652
373 7773.0 8 2660
374 7774.0 10 2670
375 7778.0 6 2676
376 7779.0 5 2681
377 7780.0 7 2688
378 7781.0 5 2693
379 7782.0 14 2707
380 11423.0 2 2709
381 7783.0 3 2712
382 7784.0 3 2715
383 7812.0 15 2730
384 7813.0 9 2739
385 7814.0 11 2750
386 7815.0 3 2753
387 7816.0 17 2770
388 7817.0 1 2771
389 7818.0 5 2776
390 7819.0 9 2785
391 11424.0 15 2800
392 7820.0 24 2824
393 7821.0 5 2829
394 7822.0 4 2833
395 7823.0 20 2853
396 7824.0 18 2871
397 7825.0 22 2893
398 7826.0 7 2900
399 7827.0 21 2921
400 7911.0 15 2936
401 7912.0 24 2960
402 11425.0 6 2966
403 7913.0 24 2990
404 7914.0 9 2999
405 7915.0 5 3004
406 7916.0 25 3029
407 7980.0 1 3030
408 7981.0 6 3036
409 7982.0 10 3046
410 8092.0 5 3051
411 8093.0 1 3052
412 8094.0 11 3063
413 11426.0 6 3069
414 8095.0 27 3096
415 8096.0 3 3099
416 8097.0 5 3104
417 8098.0 6 3110
418 8099.0 4 3114
419 8100.0 12 3126
420 8185.0 6 3132
421 8186.0 5 3137
422 8187.0 4 3141
423 8188.0 10 3151
424 11427.0 2 3153
425 8189.0 9 3162
426 8190.0 10 3172
427 8191.0 9 3181
428 8192.0 5 3186
429 8193.0 14 3200
430 8194.0 3 3203
431 8195.0 10 3213
432 8196.0 9 3222
433 8197.0 6 3228
434 8209.0 6 3234
435 11428.0 7 3241
436 8210.0 11 3252
437 8211.0 8 3260
438 8212.0 7 3267
439 8265.0 4 3271
440 8266.0 2 3273
441 8267.0 12 3285
442 8268.0 7 3292
443 8338.0 2 3294
444 8409.0 3 3297
445 8410.0 9 3306
446 10041.0 24 3330
447 11429.0 17 3347
448 8411.0 12 3359
449 8412.0 12 3371
450 8413.0 27 3398
451 8414.0 1 3399
452 8415.0 3 3402
453 8416.0 2 3404
454 8417.0 9 3413
455 8418.0 7 3420
456 8419.0 6 3426
457 8451.0 6 3432
458 11430.0 4 3436
459 8586.0 4 3440
460 8587.0 19 3459
461 8588.0 11 3470
462 8589.0 7 3477
463 8590.0 7 3484
464 8591.0 8 3492
465 8592.0 2 3494
466 8593.0 26 3520
467 8666.0 7 3527
468 8667.0 4 3531
469 11431.0 6 3537
470 8728.0 3 3540
471 8729.0 4 3544
472 8730.0 20 3564
473 8776.0 5 3569
474 8777.0 6 3575
475 8778.0 7 3582
476 8779.0 5 3587
477 8780.0 8 3595
478 8781.0 21 3616
479 8782.0 21 3637
480 11432.0 18 3655
481 8783.0 4 3659
482 8784.0 2 3661
483 8785.0 7 3668
484 8786.0 14 3682
485 8787.0 4 3686
486 8788.0 6 3692
487 8804.0 8 3700
488 8805.0 2 3702
489 8806.0 4 3706
490 8871.0 2 3708
491 11617.0 5 3713
492 8872.0 3 3716
493 8873.0 2 3718
494 8874.0 4 3722
495 8875.0 13 3735
496 8876.0 2 3737
497 8877.0 5 3742
498 9026.0 11 3753
499 9027.0 3 3756
500 9028.0 7 3763
501 9029.0 3 3766
502 11618.0 9 3775
503 9030.0 5 3780
504 9031.0 7 3787
505 9041.0 5 3792
506 9042.0 5 3797
507 9043.0 5 3802
508 9044.0 5 3807
509 9045.0 6 3813
510 9046.0 6 3819
511 9415.0 4 3823
512 9521.0 4 3827
513 11619.0 5 3832
514 9522.0 11 3843
515 9523.0 6 3849
516 9623.0 10 3859
517 9624.0 6 3865
518 9625.0 9 3874
519 9626.0 6 3880
520 9627.0 4 3884
521 9628.0 2 3886
522 9629.0 3 3889
523 9630.0 10 3899
524 11620.0 15 3914
525 9631.0 4 3918
526 9752.0 8 3926
527 9788.0 4 3930
528 9789.0 3 3933
529 9790.0 6 3939
530 9791.0 6 3945
531 9844.0 6 3951
532 9845.0 3 3954
533 9970.0 12 3966
534 9971.0 12 3978
535 11621.0 2 3980
536 9972.0 4 3984
537 9973.0 5 3989
538 9974.0 2 3991
539 9975.0 4 3995
540 9976.0 5 4000
541 9977.0 10 4010
542 0.0 4 4014
543 10113.0 7 4021
544 10114.0 6 4027
545 10115.0 2 4029
546 11622.0 10 4039
547 10116.0 2 4041
548 10117.0 1 4042
549 10118.0 13 4055
550 10119.0 2 4057
551 10120.0 3 4060
552 10121.0 4 4064
553 10122.0 3 4067
554 10123.0 6 4073
555 10124.0 16 4089
556 10125.0 2 4091
557 10042.0 3 4094
558 11623.0 3 4097
559 10126.0 10 4107
560 10127.0 2 4109
561 10128.0 6 4115
562 10129.0 9 4124
563 10130.0 7 4131
564 10131.0 12 4143
565 10132.0 4 4147
566 10133.0 9 4156
567 10134.0 3 4159
568 10135.0 11 4170
569 11624.0 2 4172
570 10136.0 6 4178
571 10137.0 2 4180
572 10138.0 5 4185
573 10876.0 1 4186
574 10877.0 3 4189
575 10878.0 12 4201
576 10879.0 1 4202
577 10880.0 6 4208
578 10881.0 6 4214
579 10882.0 5 4219
580 11625.0 18 4237
581 10883.0 4 4241
582 10884.0 4 4245
583 10885.0 4 4249
584 10886.0 2 4251
585 10887.0 3 4254
586 10888.0 18 4272
587 10889.0 1 4273
588 10890.0 11 4284
589 10891.0 8 4292
590 10892.0 11 4303
591 11626.0 8 4311
592 10893.0 4 4315
593 10894.0 14 4329
594 10895.0 2 4331
595 10896.0 10 4341
596 10897.0 1 4342
597 10900.0 6 4348
598 10901.0 9 4357
599 10902.0 11 4368
600 10903.0 4 4372
601 10904.0 15 4387
602 11627.0 3 4390
603 10905.0 5 4395
604 10906.0 4 4399
605 10907.0 9 4408
606 10908.0 6 4414
607 10909.0 6 4420
608 10910.0 11 4431
609 10911.0 17 4448
610 10912.0 3 4451
611 10913.0 4 4455
612 10914.0 41 4496
613 11628.0 10 4506
614 10915.0 7 4513
615 10916.0 12 4525
616 10917.0 2 4527
617 10918.0 5 4532
618 10919.0 5 4537
619 10920.0 6 4543
620 10921.0 4 4547
621 10922.0 7 4554
622 10.0 7 4561
623 11374.0 5 4566
624 11629.0 9 4575
625 11375.0 15 4590
626 11376.0 4 4594
627 11377.0 5 4599
628 11378.0 5 4604
629 11379.0 3 4607
630 11380.0 1 4608
631 11381.0 4 4612
632 11382.0 4 4616
633 11383.0 12 4628
634 11384.0 10 4638
635 11630.0 8 4646
636 11385.0 2 4648
637 11386.0 5 4653
638 11387.0 14 4667
639 11388.0 3 4670
640 11389.0 15 4685
641 11390.0 10 4695
642 11391.0 6 4701
643 11392.0 32 4733
644 11393.0 10 4743
645 11394.0 6 4749
646 11631.0 15 4764
647 11395.0 5 4769
648 11396.0 3 4772
649 11397.0 10 4782
650 11398.0 4 4786
651 11399.0 4 4790
652 11400.0 4 4794
653 11401.0 17 4811
654 11402.0 15 4826
655 11403.0 1 4827
656 11404.0 7 4834
657 11632.0 8 4842
658 11405.0 7 4849
659 11406.0 4 4853
660 11407.0 7 4860
661 11408.0 12 4872
662 11409.0 7 4879
663 11410.0 3 4882
664 11411.0 6 4888
665 11412.0 7 4895
666 11413.0 9 4904
667 11414.0 9 4913
668 10043.0 3 4916
669 11633.0 6 4922
670 11415.0 7 4929
671 11416.0 4 4933
672 11417.0 4 4937
673 11418.0 7 4944
674 11419.0 6 4950
675 11420.0 6 4956
676 11467.0 3 4959
677 11468.0 2 4961
678 11469.0 4 4965
679 11470.0 4 4969
680 11634.0 4 4973
681 11471.0 16 4989
682 11472.0 8 4997
683 11640.0 1 4998
684 11641.0 3 5001
685 11642.0 7 5008
686 11643.0 4 5012
687 11644.0 10 5022
688 11645.0 6 5028
689 11646.0 9 5037
690 11647.0 2 5039
691 11635.0 19 5058
692 11648.0 8 5066
693 11649.0 2 5068
694 11650.0 5 5073
695 11651.0 3 5076
696 11652.0 4 5080
697 11653.0 5 5085
698 11654.0 7 5092
699 11655.0 10 5102
700 11656.0 4 5106
701 11657.0 3 5109
702 11636.0 7 5116
703 11658.0 4 5120
704 11659.0 3 5123
705 11660.0 2 5125
706 11661.0 9 5134
707 11662.0 6 5140
708 11663.0 3 5143
709 11664.0 5 5148
710 11665.0 3 5151
711 11666.0 23 5174
712 11667.0 1 5175
713 11637.0 15 5190
714 11668.0 3 5193
715 11669.0 2 5195
716 1170.0 2 5197
717 1171.0 9 5206
718 1172.0 3 5209
719 1173.0 1 5210
720 1174.0 9 5219
721 1175.0 3 5222
722 1176.0 4 5226
723 1177.0 6 5232
724 11638.0 6 5238
725 1178.0 3 5241
726 1179.0 2 5243
727 1180.0 6 5249
728 1181.0 7 5256
729 1182.0 5 5261
730 11909.0 4 5265
731 11910.0 4 5269
732 11911.0 21 5290
733 11912.0 5 5295
734 11913.0 7 5302
735 11639.0 5 5307
736 11914.0 6 5313
737 11915.0 4 5317
738 11916.0 5 5322
739 11917.0 4 5326
740 11918.0 5 5331
741 11919.0 3 5334
742 11920.0 2 5336
743 11921.0 2 5338
744 11922.0 3 5341
745 11923.0 3 5344
746 11640.0 7 5351
747 11924.0 3 5354
748 11925.0 14 5368
749 11926.0 6 5374
750 11927.0 5 5379
751 11928.0 6 5385
752 11929.0 7 5392
753 11930.0 3 5395
754 11931.0 5 5400
755 11932.0 4 5404
756 11933.0 2 5406
757 11685.0 3 5409
758 11934.0 1 5410
759 11935.0 9 5419
760 11936.0 7 5426
761 11937.0 5 5431
762 11938.0 4 5435
763 11.0 16 5451
764 12177.0 5 5456
765 12178.0 18 5474
766 12179.0 3 5477
767 12180.0 2 5479
768 11686.0 2 5481
769 12181.0 10 5491
770 12182.0 4 5495
771 12183.0 2 5497
772 12184.0 5 5502
773 12185.0 1 5503
774 12186.0 6 5509
775 12187.0 4 5513
776 12188.0 3 5516
777 12189.0 7 5523
778 12190.0 4 5527
779 10044.0 50 5577
780 11687.0 2 5579
781 12191.0 12 5591
782 12192.0 7 5598
783 12193.0 2 5600
784 12194.0 7 5607
785 12195.0 4 5611
786 12196.0 12 5623
787 12197.0 18 5641
788 1291.0 5 5646
789 1292.0 3 5649
790 12.0 6 5655
791 11688.0 4 5659
792 1327.0 5 5664
793 1328.0 7 5671
794 1329.0 15 5686
795 1330.0 6 5692
796 1331.0 5 5697
797 1332.0 4 5701
798 1333.0 4 5705
799 1334.0 4 5709
800 13.0 3 5712
801 14.0 8 5720
802 11689.0 7 5727
803 15.0 4 5731
804 1620.0 8 5739
805 1621.0 6 5745
806 1622.0 7 5752
807 1623.0 6 5758
808 1624.0 15 5773
809 1625.0 6 5779
810 1626.0 5 5784
811 1627.0 7 5791
812 1628.0 9 5800
813 11690.0 2 5802
814 1629.0 5 5807
815 1630.0 10 5817
816 1631.0 6 5823
817 1632.0 5 5828
818 1633.0 13 5841
819 1634.0 19 5860
820 1635.0 12 5872
821 1697.0 8 5880
822 1698.0 8 5888
823 1699.0 6 5894
824 11691.0 8 5902
825 16.0 8 5910
826 1700.0 4 5914
827 1701.0 9 5923
828 1702.0 6 5929
829 1703.0 10 5939
830 1704.0 4 5943
831 1705.0 10 5953
832 1826.0 3 5956
833 1827.0 3 5959
834 1828.0 7 5966
835 11692.0 6 5972
836 1829.0 2 5974
837 1830.0 3 5977
838 1831.0 2 5979
839 1832.0 2 5981
840 1833.0 3 5984
841 1834.0 6 5990
842 1835.0 6 5996
843 1836.0 2 5998
844 1837.0 10 6008
845 1838.0 5 6013
846 11693.0 5 6018
847 1839.0 5 6023
848 1840.0 7 6030
849 1841.0 4 6034
850 1842.0 8 6042
851 1843.0 5 6047
852 1844.0 2 6049
853 1845.0 6 6055
854 1846.0 9 6064
855 1847.0 6 6070
856 1848.0 4 6074
857 11694.0 16 6090
858 1849.0 5 6095
859 1850.0 5 6100
860 1851.0 3 6103
861 1852.0 4 6107
862 1853.0 24 6131
863 1854.0 6 6137
864 1855.0 7 6144
865 1.0 4 6148
866 2038.0 6 6154
867 2039.0 6 6160
868 11807.0 6 6166
869 2040.0 2 6168
870 2041.0 5 6173
871 2042.0 3 6176
872 2043.0 6 6182
873 2044.0 6 6188
874 2045.0 2 6190
875 2046.0 3 6193
876 2047.0 8 6201
877 2048.0 3 6204
878 2049.0 2 6206
879 11808.0 10 6216
880 2050.0 8 6224
881 2051.0 13 6237
882 2052.0 7 6244
883 2053.0 3 6247
884 2054.0 6 6253
885 2055.0 20 6273
886 2056.0 9 6282
887 2057.0 1 6283
888 2058.0 5 6288
889 2059.0 4 6292
890 10045.0 15 6307
891 11809.0 7 6314
892 2060.0 13 6327
893 2061.0 8 6335
894 2062.0 7 6342
895 2063.0 6 6348
896 2064.0 6 6354
897 2065.0 8 6362
898 2066.0 4 6366
899 2067.0 15 6381
900 2184.0 6 6387
901 2185.0 5 6392
902 11810.0 20 6412
903 2186.0 3 6415
904 2187.0 15 6430
905 2188.0 8 6438
906 2189.0 14 6452
907 2190.0 4 6456
908 2191.0 3 6459
909 2192.0 6 6465
910 2193.0 10 6475
911 2194.0 8 6483
912 2195.0 11 6494
913 11811.0 11 6505
914 2196.0 4 6509
915 2197.0 7 6516
916 2198.0 11 6527
917 2199.0 17 6544
918 2200.0 5 6549
919 2201.0 4 6553
920 2202.0 2 6555
921 2203.0 4 6559
922 2204.0 6 6565
923 2205.0 5 6570
924 11812.0 5 6575
925 2206.0 10 6585
926 2207.0 6 6591
927 2277.0 5 6596
928 2278.0 5 6601
929 2279.0 5 6606
930 2280.0 5 6611
931 2281.0 6 6617
932 2282.0 5 6622
933 2283.0 1 6623
934 2284.0 4 6627
935 11813.0 6 6633
936 2285.0 4 6637
937 2286.0 7 6644
938 2287.0 6 6650
939 2288.0 14 6664
940 2289.0 7 6671
941 2290.0 12 6683
942 2291.0 3 6686
943 2292.0 6 6692
944 2293.0 3 6695
945 2294.0 4 6699
946 11814.0 9 6708
947 2295.0 11 6719
948 2296.0 3 6722
949 2307.0 2 6724
950 2308.0 1 6725
951 2309.0 4 6729
952 2310.0 2 6731
953 2311.0 3 6734
954 2312.0 4 6738
955 2313.0 5 6743
956 2314.0 4 6747
957 11815.0 8 6755
958 2315.0 2 6757
959 2316.0 1 6758
960 2317.0 4 6762
961 2318.0 7 6769
962 2319.0 5 6774
963 2320.0 5 6779
964 2321.0 5 6784
965 2322.0 4 6788
966 2323.0 3 6791
967 2324.0 4 6795
968 11816.0 6 6801
969 2325.0 8 6809
970 2326.0 3 6812
971 2327.0 5 6817
972 2328.0 11 6828
973 2329.0 8 6836
974 2330.0 7 6843
975 2331.0 4 6847
976 2332.0 17 6864
977 2333.0 7 6871
978 2334.0 4 6875
979 11817.0 6 6881
980 2335.0 4 6885
981 2336.0 15 6900
982 2378.0 9 6909
983 2837.0 4 6913
984 2838.0 6 6919
985 2839.0 5 6924
986 2840.0 7 6931
987 2841.0 5 6936
988 2842.0 4 6940
989 2843.0 2 6942
990 11818.0 13 6955
991 2844.0 8 6963
992 2845.0 6 6969
993 2846.0 9 6978
994 2847.0 12 6990
995 2848.0 5 6995
996 2849.0 5 7000
997 2850.0 4 7004
998 2851.0 12 7016
999 2852.0 3 7019
1000 2853.0 28 7047
1001 10046.0 18 7065
1002 11819.0 6 7071
1003 2854.0 2 7073
1004 2855.0 6 7079
1005 2856.0 16 7095
1006 2857.0 11 7106
1007 2858.0 17 7123
1008 2859.0 11 7134
1009 2860.0 6 7140
1010 2861.0 13 7153
1011 2.0 10 7163
1012 3008.0 9 7172
1013 11820.0 13 7185
1014 3009.0 4 7189
1015 3010.0 8 7197
1016 3011.0 3 7200
1017 3012.0 6 7206
1018 3013.0 10 7216
1019 3014.0 4 7220
1020 3015.0 8 7228
1021 3016.0 4 7232
1022 3017.0 8 7240
1023 3018.0 6 7246
1024 11821.0 16 7262
1025 3019.0 23 7285
1026 3020.0 9 7294
1027 3021.0 5 7299
1028 3022.0 5 7304
1029 3023.0 7 7311
1030 3024.0 5 7316
1031 3025.0 18 7334
1032 3026.0 15 7349
1033 3027.0 3 7352
1034 3028.0 11 7363
1035 11822.0 11 7374
1036 3029.0 12 7386
1037 3030.0 11 7397
1038 3031.0 18 7415
1039 3032.0 2 7417
1040 3059.0 1 7418
1041 3060.0 2 7420
1042 3061.0 3 7423
1043 3062.0 3 7426
1044 3063.0 3 7429
1045 3064.0 3 7432
1046 11823.0 7 7439
1047 3065.0 5 7444
1048 3066.0 2 7446
1049 3067.0 6 7452
1050 3068.0 4 7456
1051 3069.0 3 7459
1052 3070.0 9 7468
1053 3071.0 6 7474
1054 3072.0 3 7477
1055 3073.0 6 7483
1056 3074.0 5 7488
1057 11824.0 6 7494
1058 3075.0 8 7502
1059 3076.0 2 7504
1060 3077.0 4 7508
1061 3078.0 6 7514
1062 3079.0 7 7521
1063 3080.0 5 7526
1064 3081.0 3 7529
1065 3082.0 7 7536
1066 3083.0 4 7540
1067 3084.0 1 7541
1068 11825.0 3 7544
1069 3085.0 11 7555
1070 3086.0 2 7557
1071 3087.0 18 7575
1072 3088.0 6 7581
1073 3144.0 13 7594
1074 3145.0 1 7595
1075 3146.0 2 7597
1076 3147.0 6 7603
1077 3148.0 8 7611
1078 3149.0 5 7616
1079 11826.0 8 7624
1080 3150.0 7 7631
1081 3151.0 4 7635
1082 3273.0 19 7654
1083 3274.0 3 7657
1084 3275.0 3 7660
1085 3276.0 15 7675
1086 3277.0 3 7678
1087 3278.0 15 7693
1088 3279.0 5 7698
1089 3280.0 12 7710
1090 11827.0 5 7715
1091 3446.0 2 7717
1092 3447.0 5 7722
1093 3448.0 3 7725
1094 3449.0 4 7729
1095 3450.0 5 7734
1096 3594.0 6 7740
1097 3595.0 6 7746
1098 3596.0 5 7751
1099 3597.0 2 7753
1100 3598.0 4 7757
1101 11828.0 4 7761
1102 3599.0 2 7763
1103 3600.0 5 7768
1104 3601.0 6 7774
1105 3602.0 3 7777
1106 3603.0 8 7785
1107 3604.0 7 7792
1108 3605.0 4 7796
1109 3606.0 2 7798
1110 3607.0 5 7803
1111 3608.0 10 7813
1112 10029.0 7 7820
1113 10047.0 6 7826
1114 11829.0 7 7833
1115 3609.0 12 7845
1116 3610.0 2 7847
1117 3611.0 7 7854
1118 3612.0 11 7865
1119 3613.0 6 7871
1120 3614.0 3 7874
1121 3615.0 4 7878
1122 3616.0 17 7895
1123 3617.0 10 7905
1124 3618.0 5 7910
1125 11830.0 8 7918
1126 3619.0 17 7935
1127 3731.0 5 7940
1128 3732.0 7 7947
1129 3733.0 6 7953
1130 3734.0 6 7959
1131 3735.0 13 7972
1132 3736.0 5 7977
1133 3737.0 3 7980
1134 3738.0 5 7985
1135 3739.0 5 7990
1136 11831.0 7 7997
1137 3740.0 15 8012
1138 3741.0 4 8016
1139 3742.0 4 8020
1140 3743.0 22 8042
1141 3744.0 9 8051
1142 3909.0 5 8056
1143 3910.0 2 8058
1144 3911.0 7 8065
1145 3912.0 7 8072
1146 3913.0 6 8078
1147 11832.0 13 8091
1148 3914.0 1 8092
1149 3915.0 10 8102
1150 3916.0 10 8112
1151 3917.0 1 8113
1152 3918.0 2 8115
1153 3919.0 6 8121
1154 3920.0 10 8131
1155 3921.0 11 8142
1156 3922.0 6 8148
1157 3923.0 2 8150
1158 11833.0 8 8158
1159 3924.0 6 8164
1160 3925.0 13 8177
1161 3926.0 5 8182
1162 3927.0 11 8193
1163 3928.0 14 8207
1164 3929.0 16 8223
1165 3930.0 7 8230
1166 3931.0 32 8262
1167 3932.0 7 8269
1168 3933.0 3 8272
1169 11834.0 8 8280
1170 3934.0 11 8291
1171 3960.0 5 8296
1172 3961.0 4 8300
1173 3962.0 4 8304
1174 3963.0 8 8312
1175 3964.0 4 8316
1176 3965.0 5 8321
1177 3966.0 7 8328
1178 3967.0 20 8348
1179 3968.0 8 8356
1180 11835.0 6 8362
1181 3969.0 4 8366
1182 3970.0 7 8373
1183 3971.0 14 8387
1184 3972.0 5 8392
1185 3973.0 8 8400
1186 3974.0 13 8413
1187 3975.0 5 8418
1188 3976.0 12 8430
1189 3977.0 4 8434
1190 3978.0 4 8438
1191 11836.0 7 8445
1192 3979.0 2 8447
1193 3980.0 6 8453
1194 3981.0 6 8459
1195 3.0 8 8467
1196 4003.0 6 8473
1197 4004.0 14 8487
1198 4005.0 8 8495
1199 4057.0 7 8502
1200 4058.0 14 8516
1201 4059.0 5 8521
1202 11837.0 5 8526
1203 4060.0 4 8530
1204 4061.0 10 8540
1205 4062.0 6 8546
1206 4063.0 11 8557
1207 4064.0 7 8564
1208 4065.0 6 8570
1209 4066.0 21 8591
1210 4067.0 2 8593
1211 4068.0 8 8601
1212 4069.0 11 8612
1213 11838.0 8 8620
1214 4070.0 6 8626
1215 4071.0 18 8644
1216 4072.0 5 8649
1217 4073.0 2 8651
1218 4074.0 4 8655
1219 4075.0 3 8658
1220 4215.0 7 8665
1221 4216.0 5 8670
1222 4217.0 3 8673
1223 4218.0 11 8684
1224 10048.0 23 8707
1225 11839.0 5 8712
1226 4219.0 3 8715
1227 4220.0 2 8717
1228 4221.0 3 8720
1229 4222.0 3 8723
1230 4223.0 6 8729
1231 4224.0 4 8733
1232 4225.0 7 8740
1233 4226.0 4 8744
1234 4227.0 3 8747
1235 4228.0 4 8751
1236 11840.0 14 8765
1237 4229.0 3 8768
1238 4230.0 1 8769
1239 4231.0 7 8776
1240 4232.0 5 8781
1241 4233.0 3 8784
1242 4234.0 10 8794
1243 4235.0 3 8797
1244 4236.0 9 8806
1245 4237.0 6 8812
1246 4238.0 5 8817
1247 11841.0 5 8822
1248 4239.0 3 8825
1249 4240.0 3 8828
1250 4241.0 6 8834
1251 4242.0 10 8844
1252 4243.0 20 8864
1253 4244.0 23 8887
1254 4378.0 14 8901
1255 4379.0 3 8904
1256 4380.0 11 8915
1257 4381.0 5 8920
1258 11842.0 2 8922
1259 4382.0 3 8925
1260 4383.0 2 8927
1261 4384.0 9 8936
1262 4385.0 5 8941
1263 4386.0 4 8945
1264 4387.0 3 8948
1265 4388.0 3 8951
1266 4389.0 6 8957
1267 4390.0 3 8960
1268 4391.0 9 8969
1269 11843.0 12 8981
1270 4392.0 3 8984
1271 4393.0 6 8990
1272 4394.0 5 8995
1273 4395.0 2 8997
1274 4396.0 2 8999
1275 4397.0 5 9004
1276 4398.0 6 9010
1277 4399.0 7 9017
1278 4400.0 6 9023
1279 4401.0 24 9047
1280 11844.0 3 9050
1281 4402.0 5 9055
1282 4403.0 8 9063
1283 4404.0 7 9070
1284 4532.0 8 9078
1285 4533.0 8 9086
1286 4534.0 5 9091
1287 4535.0 4 9095
1288 4536.0 3 9098
1289 4537.0 5 9103
1290 4538.0 6 9109
1291 11845.0 4 9113
1292 4539.0 2 9115
1293 4540.0 2 9117
1294 4541.0 2 9119
1295 4542.0 4 9123
1296 4543.0 4 9127
1297 4544.0 4 9131
1298 4545.0 4 9135
1299 4546.0 2 9137
1300 4547.0 5 9142
1301 4548.0 1 9143
1302 11846.0 5 9148
1303 4549.0 5 9153
1304 4550.0 25 9178
1305 4551.0 9 9187
1306 4552.0 9 9196
1307 4553.0 3 9199
1308 4554.0 4 9203
1309 4555.0 11 9214
1310 4556.0 1 9215
1311 4557.0 6 9221
1312 4558.0 5 9226
1313 11847.0 8 9234
1314 4559.0 5 9239
1315 4663.0 25 9264
1316 4664.0 4 9268
1317 4665.0 10 9278
1318 4666.0 16 9294
1319 4667.0 7 9301
1320 4668.0 9 9310
1321 4669.0 6 9316
1322 4670.0 3 9319
1323 4671.0 4 9323
1324 11848.0 4 9327
1325 4672.0 4 9331
1326 4673.0 4 9335
1327 4674.0 7 9342
1328 4675.0 1 9343
1329 4676.0 5 9348
1330 4677.0 3 9351
1331 4678.0 9 9360
1332 4679.0 16 9376
1333 4680.0 4 9380
1334 4681.0 7 9387
1335 10286.0 11 9398
1336 11849.0 5 9403
1337 4682.0 19 9422
1338 4683.0 10 9432
1339 4684.0 10 9442
1340 4685.0 8 9450
1341 489.0 1 9451
1342 490.0 20 9471
1343 491.0 2 9473
1344 492.0 2 9475
1345 493.0 5 9480
1346 494.0 3 9483
1347 11850.0 1 9484
1348 495.0 1 9485
1349 496.0 2 9487
1350 497.0 4 9491
1351 498.0 3 9494
1352 499.0 3 9497
1353 4.0 3 9500
1354 500.0 9 9509
1355 5018.0 6 9515
1356 5019.0 6 9521
1357 501.0 9 9530
1358 11851.0 2 9532
1359 5020.0 2 9534
1360 5021.0 12 9546
1361 5022.0 5 9551
1362 5023.0 3 9554
1363 5024.0 8 9562
1364 5025.0 2 9564
1365 5026.0 4 9568
1366 5027.0 2 9570
1367 5028.0 4 9574
1368 5029.0 5 9579
1369 11852.0 2 9581
1370 502.0 4 9585
1371 5030.0 8 9593
1372 5031.0 5 9598
1373 5032.0 1 9599
1374 5033.0 3 9602
1375 5034.0 6 9608
1376 5035.0 8 9616
1377 5036.0 4 9620
1378 5037.0 8 9628
1379 5038.0 5 9633
1380 12036.0 4 9637
1381 5039.0 4 9641
1382 503.0 6 9647
1383 5040.0 7 9654
1384 5041.0 4 9658
1385 504.0 3 9661
1386 505.0 4 9665
1387 506.0 4 9669
1388 507.0 13 9682
1389 508.0 10 9692
1390 509.0 10 9702
1391 12037.0 11 9713
1392 5109.0 4 9717
1393 510.0 4 9721
1394 5110.0 2 9723
1395 5111.0 3 9726
1396 5112.0 3 9729
1397 5113.0 2 9731
1398 5114.0 5 9736
1399 5115.0 5 9741
1400 5116.0 7 9748
1401 5117.0 3 9751
1402 12038.0 3 9754
1403 5118.0 2 9756
1404 5119.0 4 9760
1405 511.0 23 9783
1406 512.0 3 9786
1407 513.0 3 9789
1408 514.0 1 9790
1409 515.0 16 9806
1410 516.0 6 9812
1411 529.0 2 9814
1412 530.0 5 9819
1413 12039.0 8 9827
1414 531.0 2 9829
1415 532.0 6 9835
1416 533.0 13 9848
1417 534.0 5 9853
1418 535.0 2 9855
1419 536.0 3 9858
1420 537.0 5 9863
1421 538.0 3 9866
1422 539.0 2 9868
1423 540.0 4 9872
1424 12040.0 23 9895
1425 541.0 8 9903
1426 5429.0 7 9910
1427 542.0 9 9919
1428 5430.0 8 9927
1429 5431.0 11 9938
1430 5432.0 10 9948
1431 5433.0 4 9952
1432 5434.0 6 9958
1433 5435.0 6 9964
1434 5436.0 4 9968
1435 12041.0 7 9975
1436 5437.0 3 9978
1437 5438.0 4 9982
1438 5439.0 5 9987
1439 543.0 6 9993
1440 5440.0 4 9997
1441 5441.0 4 10001
1442 5442.0 4 10005
1443 5443.0 4 10009
1444 5444.0 5 10014
1445 5445.0 5 10019
1446 10287.0 3 10022
1447 12042.0 2 10024
1448 5446.0 30 10054
1449 544.0 5 10059
1450 545.0 1 10060
1451 546.0 4 10064
1452 5473.0 2 10066
1453 5474.0 3 10069
1454 5475.0 6 10075
1455 5476.0 9 10084
1456 5477.0 3 10087
1457 5478.0 9 10096
1458 12043.0 8 10104
1459 5479.0 8 10112
1460 547.0 7 10119
1461 5480.0 4 10123
1462 5481.0 9 10132
1463 5482.0 7 10139
1464 5483.0 3 10142
1465 5484.0 1 10143
1466 5485.0 12 10155
1467 5486.0 11 10166
1468 5487.0 9 10175
1469 12044.0 5 10180
1470 5488.0 7 10187
1471 5489.0 14 10201
1472 548.0 4 10205
1473 5490.0 6 10211
1474 5491.0 4 10215
1475 5492.0 6 10221
1476 5493.0 7 10228
1477 5494.0 19 10247
1478 5495.0 10 10257
1479 5496.0 4 10261
1480 12045.0 5 10266
1481 5497.0 1 10267
1482 5498.0 4 10271
1483 5499.0 3 10274
1484 549.0 5 10279
1485 5500.0 8 10287
1486 550.0 8 10295
1487 551.0 5 10300
1488 552.0 5 10305
1489 553.0 4 10309
1490 554.0 2 10311
1491 12046.0 5 10316
1492 555.0 7 10323
1493 556.0 4 10327
1494 557.0 7 10334
1495 5846.0 25 10359
1496 5847.0 9 10368
1497 5848.0 3 10371
1498 5849.0 1 10372
1499 5850.0 7 10379
1500 5851.0 7 10386
1501 5852.0 11 10397
1502 12047.0 5 10402
1503 5853.0 9 10411
1504 5854.0 4 10415
1505 5855.0 15 10430
1506 5856.0 5 10435
1507 5857.0 11 10446
1508 5858.0 6 10452
1509 5859.0 14 10466
1510 5860.0 4 10470
1511 5861.0 20 10490
1512 5862.0 16 10506
1513 12048.0 3 10509
1514 5.0 4 10513
1515 6068.0 3 10516
1516 6069.0 6 10522
1517 6070.0 1 10523
1518 6071.0 13 10536
1519 6072.0 7 10543
1520 6073.0 1 10544
1521 6074.0 15 10559
1522 6075.0 4 10563
1523 6076.0 5 10568
1524 12049.0 7 10575
1525 6077.0 6 10581
1526 6078.0 23 10604
1527 6079.0 15 10619
1528 6080.0 4 10623
1529 6081.0 1 10624
1530 6082.0 23 10647
1531 6083.0 2 10649
1532 6084.0 9 10658
1533 6085.0 20 10678
1534 6086.0 10 10688
1535 12050.0 20 10708
1536 6087.0 7 10715
1537 6088.0 14 10729
1538 6089.0 6 10735
1539 6090.0 6 10741
1540 6091.0 4 10745
1541 6092.0 6 10751
1542 6093.0 4 10755
1543 6094.0 22 10777
1544 6649.0 7 10784
1545 6650.0 9 10793
1546 12051.0 3 10796
1547 6651.0 7 10803
1548 6652.0 1 10804
1549 6653.0 21 10825
1550 6654.0 7 10832
1551 6655.0 6 10838
1552 6656.0 15 10853
1553 6657.0 6 10859
1554 6658.0 4 10863
1555 6659.0 11 10874
1556 6660.0 8 10882
1557 10288.0 0 10882
1558 12052.0 5 10887
1559 6661.0 8 10895
1560 6662.0 20 10915
1561 6663.0 8 10923
1562 6664.0 15 10938
1563 6665.0 5 10943
1564 6666.0 4 10947
1565 6667.0 2 10949
1566 6668.0 1 10950
1567 6669.0 9 10959
1568 6670.0 4 10963
1569 12053.0 3 10966
1570 6671.0 6 10972
1571 6672.0 6 10978
1572 6673.0 3 10981
1573 6674.0 5 10986
1574 6675.0 15 11001
1575 6676.0 2 11003
1576 6677.0 3 11006
1577 6678.0 7 11013
1578 6679.0 25 11038
1579 6680.0 5 11043
1580 12054.0 8 11051
1581 6681.0 3 11054
1582 6682.0 4 11058
1583 6683.0 4 11062
1584 6684.0 6 11068
1585 6685.0 13 11081
1586 6686.0 6 11087
1587 6687.0 4 11091
1588 6688.0 2 11093
1589 6689.0 9 11102
1590 6690.0 5 11107
1591 12055.0 15 11122
1592 6691.0 6 11128
1593 6692.0 8 11136
1594 6693.0 27 11163
1595 6694.0 15 11178
1596 6910.0 13 11191
1597 6911.0 4 11195
1598 6912.0 23 11218
1599 6913.0 21 11239
1600 6979.0 5 11244
1601 6980.0 5 11249
1602 12056.0 13 11262
1603 6981.0 3 11265
1604 6982.0 13 11278
1605 6983.0 6 11284
1606 6984.0 9 11293
1607 6985.0 3 11296
1608 6986.0 7 11303
1609 6987.0 3 11306
1610 6988.0 14 11320
1611 6989.0 3 11323
1612 6990.0 8 11331
1613 12057.0 1 11332
1614 6991.0 9 11341
1615 6992.0 16 11357
1616 6993.0 3 11360
1617 6994.0 5 11365
1618 6995.0 5 11370
1619 6996.0 5 11375
1620 6997.0 6 11381
1621 6998.0 14 11395
1622 6999.0 14 11409
1623 6.0 4 11413
1624 12058.0 6 11419
1625 7000.0 12 11431
1626 7001.0 7 11438
1627 7002.0 13 11451
1628 7003.0 4 11455
1629 7004.0 17 11472
1630 7005.0 6 11478
1631 7006.0 12 11490
1632 7007.0 6 11496
1633 7008.0 9 11505
1634 7072.0 2 11507
1635 12059.0 12 11519
1636 7073.0 2 11521
1637 7074.0 3 11524
1638 7075.0 2 11526
1639 7076.0 5 11531
1640 7077.0 3 11534
1641 7078.0 7 11541
1642 7079.0 7 11548
1643 7080.0 11 11559
1644 7081.0 3 11562
1645 7082.0 4 11566
1646 12060.0 4 11570
1647 7083.0 4 11574
1648 7084.0 3 11577
1649 7085.0 3 11580
1650 7086.0 2 11582
1651 7087.0 5 11587
1652 7088.0 14 11601
1653 7089.0 14 11615
1654 7090.0 4 11619
1655 7091.0 18 11637
1656 7092.0 13 11650
1657 12061.0 8 11658
1658 7093.0 4 11662
1659 7094.0 5 11667
1660 7095.0 7 11674
1661 7096.0 8 11682
1662 7142.0 3 11685
1663 7143.0 5 11690
1664 7144.0 6 11696
1665 7145.0 6 11702
1666 7146.0 5 11707
1667 7147.0 3 11710
1668 10289.0 1 11711
1669 12062.0 2 11713
1670 7314.0 6 11719
1671 7315.0 2 11721
1672 7316.0 7 11728
1673 7317.0 5 11733
1674 7318.0 3 11736
1675 7319.0 7 11743
1676 731.0 5 11748
1677 7320.0 4 11752
1678 7321.0 5 11757
1679 7322.0 10 11767
1680 12063.0 8 11775
1681 7323.0 14 11789
1682 7324.0 4 11793
1683 7325.0 2 11795
1684 7326.0 34 11829
1685 7327.0 2 11831
1686 7328.0 5 11836
1687 7329.0 6 11842
1688 732.0 5 11847
1689 7330.0 5 11852
1690 7331.0 12 11864
1691 12064.0 1 11865
1692 733.0 8 11873
1693 734.0 5 11878
1694 735.0 4 11882
1695 736.0 4 11886
1696 737.0 5 11891
1697 738.0 16 11907
1698 739.0 7 11914
1699 740.0 2 11916
1700 741.0 3 11919
1701 742.0 3 11922
1702 12220.0 2 11924
1703 743.0 5 11929
1704 744.0 9 11938
1705 745.0 8 11946
1706 746.0 11 11957
1707 747.0 9 11966
1708 748.0 7 11973
1709 749.0 5 11978
1710 750.0 10 11988
1711 751.0 14 12002
1712 752.0 15 12017
1713 12221.0 4 12021
1714 753.0 8 12029
1715 754.0 18 12047
1716 755.0 9 12056
1717 756.0 4 12060
1718 757.0 4 12064
1719 7593.0 9 12073
1720 7594.0 5 12078
1721 7595.0 4 12082
1722 7596.0 3 12085
1723 7597.0 3 12088
1724 12222.0 2 12090
1725 7598.0 5 12095
1726 7599.0 7 12102
1727 7600.0 11 12113
1728 7601.0 5 12118
1729 7602.0 6 12124
1730 7603.0 5 12129
1731 7604.0 8 12137
1732 7605.0 2 12139
1733 7606.0 3 12142
1734 7607.0 10 12152
1735 12223.0 8 12160
1736 7608.0 4 12164
1737 7609.0 6 12170
1738 7610.0 6 12176
1739 7611.0 4 12180
1740 7612.0 6 12186
1741 7613.0 16 12202
1742 7614.0 12 12214
1743 7615.0 4 12218
1744 7616.0 3 12221
1745 7617.0 2 12223
1746 12224.0 1 12224
1747 7618.0 7 12231
1748 7619.0 3 12234
1749 7620.0 6 12240
1750 7979.0 14 12254
1751 7980.0 15 12269
1752 7981.0 7 12276
1753 7982.0 14 12290
1754 7983.0 6 12296
1755 7984.0 17 12313
1756 7985.0 14 12327
1757 12225.0 2 12329
1758 7986.0 5 12334
1759 7987.0 7 12341
1760 7988.0 15 12356
1761 7989.0 12 12368
1762 7990.0 13 12381
1763 7991.0 28 12409
1764 7992.0 6 12415
1765 7993.0 11 12426
1766 7994.0 13 12439
1767 7995.0 11 12450
1768 12226.0 11 12461
1769 7996.0 18 12479
1770 7997.0 16 12495
1771 7998.0 8 12503
1772 7999.0 5 12508
1773 7.0 6 12514
1774 8000.0 10 12524
1775 8001.0 8 12532
1776 8002.0 21 12553
1777 8003.0 8 12561
1778 8004.0 8 12569
1779 10290.0 9 12578
1780 12227.0 11 12589
1781 8005.0 16 12605
1782 8006.0 12 12617
1783 8007.0 13 12630
1784 8008.0 8 12638
1785 8201.0 14 12652
1786 8202.0 3 12655
1787 8203.0 3 12658
1788 8204.0 2 12660
1789 8205.0 4 12664
1790 8206.0 7 12671
1791 12243.0 4 12675
1792 8207.0 11 12686
1793 8208.0 6 12692
1794 8209.0 4 12696
1795 8210.0 8 12704
1796 8211.0 4 12708
1797 8212.0 2 12710
1798 8213.0 4 12714
1799 8214.0 8 12722
1800 8215.0 2 12724
1801 8216.0 5 12729
1802 12244.0 12 12741
1803 8217.0 5 12746
1804 8218.0 6 12752
1805 8219.0 7 12759
1806 8381.0 19 12778
1807 8382.0 6 12784
1808 8383.0 11 12795
1809 8384.0 4 12799
1810 8385.0 11 12810
1811 8386.0 4 12814
1812 8387.0 18 12832
1813 12245.0 10 12842
1814 8388.0 12 12854
1815 8389.0 5 12859
1816 8390.0 20 12879
1817 8471.0 4 12883
1818 8472.0 3 12886
1819 8473.0 14 12900
1820 8474.0 6 12906
1821 8475.0 20 12926
1822 8476.0 3 12929
1823 8477.0 7 12936
1824 12246.0 5 12941
1825 8478.0 22 12963
1826 8479.0 6 12969
1827 8480.0 1 12970
1828 8481.0 5 12975
1829 8482.0 9 12984
1830 8483.0 5 12989
1831 8484.0 16 13005
1832 8485.0 10 13015
1833 8486.0 17 13032
1834 8487.0 6 13038
1835 12247.0 6 13044
1836 8488.0 5 13049
1837 8489.0 16 13065
1838 8490.0 14 13079
1839 8491.0 9 13088
1840 8492.0 13 13101
1841 8493.0 13 13114
1842 8494.0 5 13119
1843 8495.0 5 13124
1844 8496.0 5 13129
1845 8497.0 7 13136
1846 12248.0 16 13152
1847 8498.0 15 13167
1848 8499.0 5 13172
1849 8961.0 5 13177
1850 8962.0 28 13205
1851 8963.0 4 13209
1852 8964.0 6 13215
1853 8965.0 5 13220
1854 8966.0 10 13230
1855 8967.0 10 13240
1856 8968.0 11 13251
1857 12249.0 6 13257
1858 8969.0 11 13268
1859 8970.0 3 13271
1860 8971.0 6 13277
1861 8972.0 5 13282
1862 8973.0 18 13300
1863 8974.0 8 13308
1864 8975.0 7 13315
1865 8976.0 12 13327
1866 8977.0 5 13332
1867 8978.0 23 13355
1868 12250.0 5 13360
1869 8979.0 7 13367
1870 8980.0 6 13373
1871 8981.0 20 13393
1872 8982.0 6 13399
1873 8.0 6 13405
1874 9070.0 4 13409
1875 9071.0 13 13422
1876 9072.0 10 13432
1877 9073.0 16 13448
1878 9074.0 9 13457
1879 12251.0 5 13462
1880 9075.0 3 13465
1881 9076.0 5 13470
1882 9077.0 2 13472
1883 9078.0 7 13479
1884 9079.0 5 13484
1885 9080.0 11 13495
1886 9081.0 10 13505
1887 9082.0 6 13511
1888 9083.0 4 13515
1889 9084.0 15 13530
1890 10291.0 8 13538
1891 12252.0 10 13548
1892 9085.0 6 13554
1893 9086.0 5 13559
1894 9087.0 3 13562
1895 9088.0 20 13582
1896 9089.0 9 13591
1897 9090.0 5 13596
1898 9091.0 3 13599
1899 9092.0 21 13620
1900 9093.0 19 13639
1901 9165.0 6 13645
1902 12253.0 6 13651
1903 9166.0 5 13656
1904 9167.0 7 13663
1905 9168.0 4 13667
1906 9169.0 8 13675
1907 9170.0 6 13681
1908 9171.0 11 13692
1909 9172.0 11 13703
1910 9173.0 11 13714
1911 9174.0 6 13720
1912 9175.0 8 13728
1913 12254.0 2 13730
1914 9176.0 9 13739
1915 9177.0 13 13752
1916 9178.0 6 13758
1917 9179.0 6 13764
1918 9180.0 14 13778
1919 9181.0 7 13785
1920 9182.0 3 13788
1921 9183.0 2 13790
1922 9184.0 9 13799
1923 9185.0 7 13806
1924 12255.0 6 13812
1925 9186.0 6 13818
1926 9187.0 4 13822
1927 9188.0 8 13830
1928 9398.0 4 13834
1929 9399.0 4 13838
1930 9400.0 10 13848
1931 9401.0 9 13857
1932 9445.0 4 13861
1933 9446.0 5 13866
1934 9447.0 7 13873
1935 12256.0 5 13878
1936 9448.0 4 13882
1937 9449.0 3 13885
1938 9450.0 3 13888
1939 9451.0 3 13891
1940 9452.0 5 13896
1941 9453.0 3 13899
1942 9454.0 5 13904
1943 9455.0 5 13909
1944 9456.0 11 13920
1945 9457.0 7 13927
1946 12257.0 4 13931
1947 9458.0 4 13935
1948 9459.0 7 13942
1949 9460.0 7 13949
1950 9461.0 10 13959
1951 9462.0 10 13969
1952 9463.0 6 13975
1953 9464.0 5 13980
1954 9465.0 5 13985
1955 9466.0 5 13990
1956 9467.0 5 13995
1957 12258.0 6 14001
1958 9468.0 5 14006
1959 9469.0 7 14013
1960 9470.0 29 14042
1961 9471.0 4 14046
1962 9472.0 8 14054
1963 9473.0 5 14059
1964 9551.0 2 14061
1965 9552.0 1 14062
1966 9553.0 3 14065
1967 9554.0 3 14068
1968 12364.0 6 14074
1969 9555.0 5 14079
1970 9556.0 6 14085
1971 9557.0 2 14087
1972 9558.0 4 14091
1973 9559.0 3 14094
1974 9560.0 5 14099
1975 9561.0 3 14102
1976 9562.0 3 14105
1977 9563.0 2 14107
1978 9564.0 4 14111
1979 12365.0 6 14117
1980 9565.0 4 14121
1981 9566.0 5 14126
1982 9567.0 5 14131
1983 9568.0 6 14137
1984 9569.0 5 14142
1985 9570.0 14 14156
1986 9571.0 16 14172
1987 9572.0 6 14178
1988 9573.0 5 14183
1989 9574.0 5 14188
1990 12366.0 7 14195
1991 9575.0 8 14203
1992 9576.0 7 14210
1993 9577.0 5 14215
1994 9578.0 14 14229
1995 957.0 9 14238
1996 958.0 2 14240
1997 959.0 1 14241
1998 960.0 10 14251
1999 961.0 5 14256
2000 9629.0 7 14263
2001 10292.0 4 14267
2002 12367.0 6 14273
2003 962.0 2 14275
2004 9630.0 2 14277
2005 9631.0 7 14284
2006 9632.0 4 14288
2007 9633.0 7 14295
2008 9634.0 6 14301
2009 9635.0 4 14305
2010 9636.0 6 14311
2011 9637.0 1 14312
2012 9638.0 14 14326
2013 12368.0 6 14332
2014 963.0 3 14335
2015 964.0 2 14337
2016 965.0 1 14338
2017 966.0 1 14339
2018 967.0 8 14347
2019 968.0 4 14351
2020 969.0 6 14357
2021 970.0 5 14362
2022 971.0 4 14366
2023 972.0 5 14371
2024 12369.0 15 14386
2025 973.0 12 14398
2026 974.0 5 14403
2027 975.0 5 14408
2028 976.0 9 14417
2029 977.0 3 14420
2030 978.0 4 14424
2031 979.0 3 14427
2032 980.0 6 14433
2033 981.0 9 14442
2034 9821.0 15 14457
2035 12370.0 16 14473
2036 9822.0 2 14475
2037 9823.0 14 14489
2038 9824.0 22 14511
2039 9825.0 9 14520
2040 9826.0 6 14526
2041 9827.0 3 14529
2042 9828.0 4 14533
2043 9829.0 2 14535
2044 982.0 3 14538
2045 9830.0 5 14543
2046 12371.0 12 14555
2047 9831.0 4 14559
2048 9832.0 6 14565
2049 9833.0 4 14569
2050 9834.0 8 14577
2051 983.0 4 14581
2052 984.0 5 14586
2053 9866.0 20 14606
2054 9867.0 5 14611
2055 9868.0 4 14615
2056 9869.0 3 14618
2057 12372.0 15 14633
2058 9870.0 4 14637
2059 9871.0 4 14641
2060 9872.0 3 14644
2061 9873.0 3 14647
2062 9874.0 18 14665
2063 9875.0 7 14672
2064 9876.0 5 14677
2065 9877.0 10 14687
2066 9.0 9 14696
2067 0.0 6 14702
2068 12373.0 7 14709
2069 10000.0 7 14716
2070 10001.0 6 14722
2071 10002.0 11 14733
2072 10009.0 4 14737
2073 10010.0 4 14741
2074 10011.0 6 14747
2075 10069.0 7 14754
2076 10070.0 6 14760
2077 10071.0 7 14767
2078 10072.0 4 14771
2079 12374.0 10 14781
2080 10073.0 4 14785
2081 10074.0 3 14788
2082 10075.0 9 14797
2083 10076.0 5 14802
2084 10077.0 6 14808
2085 10078.0 3 14811
2086 10079.0 3 14814
2087 10080.0 3 14817
2088 10081.0 2 14819
2089 10082.0 16 14835
2090 12375.0 22 14857
2091 10125.0 4 14861
2092 10223.0 6 14867
2093 10224.0 13 14880
2094 10225.0 2 14882
2095 10226.0 4 14886
2096 10227.0 7 14893
2097 10228.0 4 14897
2098 1023.0 4 14901
2099 1024.0 12 14913
2100 1025.0 13 14926
2101 12376.0 7 14933
2102 10409.0 2 14935
2103 1053.0 13 14948
2104 1054.0 9 14957
2105 105.0 2 14959
2106 106.0 17 14976
2107 10715.0 3 14979
2108 10716.0 4 14983
2109 10717.0 5 14988
2110 10718.0 5 14993
2111 10719.0 13 15006
2112 10293.0 10 15016
2113 12377.0 21 15037
2114 10720.0 4 15041
2115 10721.0 12 15053
2116 10722.0 10 15063
2117 10723.0 7 15070
2118 10724.0 6 15076
2119 10725.0 5 15081
2120 10726.0 5 15086
2121 10727.0 7 15093
2122 10728.0 10 15103
2123 10729.0 11 15114
2124 12378.0 12 15126
2125 10730.0 6 15132
2126 1076.0 9 15141
2127 1077.0 11 15152
2128 1078.0 6 15158
2129 1079.0 18 15176
2130 107.0 5 15181
2131 1080.0 10 15191
2132 1081.0 2 15193
2133 1082.0 4 15197
2134 10838.0 7 15204
2135 12379.0 5 15209
2136 10839.0 4 15213
2137 10840.0 5 15218
2138 10841.0 2 15220
2139 10842.0 8 15228
2140 10843.0 7 15235
2141 10906.0 4 15239
2142 10907.0 6 15245
2143 11144.0 4 15249
2144 11145.0 6 15255
2145 11146.0 9 15264
2146 12380.0 10 15274
2147 11147.0 4 15278
2148 11148.0 4 15282
2149 11149.0 5 15287
2150 11150.0 5 15292
2151 11151.0 5 15297
2152 11152.0 4 15301
2153 11153.0 3 15304
2154 11154.0 3 15307
2155 11155.0 9 15316
2156 11156.0 2 15318
2157 12381.0 3 15321
2158 11157.0 15 15336
2159 11158.0 17 15353
2160 11159.0 3 15356
2161 11160.0 10 15366
2162 11193.0 13 15379
2163 11219.0 4 15383
2164 11220.0 5 15388
2165 11221.0 2 15390
2166 11222.0 5 15395
2167 11240.0 9 15404
2168 12382.0 8 15412
2169 11241.0 14 15426
2170 11247.0 4 15430
2171 11248.0 7 15437
2172 11249.0 4 15441
2173 11250.0 3 15444
2174 11251.0 7 15451
2175 11276.0 11 15462
2176 11292.0 7 15469
2177 11293.0 8 15477
2178 11294.0 6 15483
2179 12383.0 11 15494
2180 11295.0 7 15501
2181 11296.0 6 15507
2182 11297.0 2 15509
2183 11298.0 6 15515
2184 11299.0 19 15534
2185 11300.0 9 15543
2186 11301.0 12 15555
2187 11303.0 2 15557
2188 11304.0 6 15563
2189 11305.0 7 15570
2190 12384.0 22 15592
2191 11306.0 5 15597
2192 11307.0 3 15600
2193 11308.0 8 15608
2194 11309.0 2 15610
2195 11310.0 4 15614
2196 11311.0 7 15621
2197 11312.0 2 15623
2198 11313.0 6 15629
2199 11314.0 4 15633
2200 11315.0 6 15639
2201 12385.0 8 15647
2202 11316.0 4 15651
2203 11387.0 2 15653
2204 11388.0 3 15656
2205 11389.0 10 15666
2206 11390.0 7 15673
2207 11391.0 6 15679
2208 11392.0 18 15697
2209 11393.0 6 15703
2210 11416.0 9 15712
2211 11417.0 10 15722
2212 12386.0 7 15729
2213 11418.0 3 15732
2214 11419.0 4 15736
2215 11420.0 5 15741
2216 11421.0 9 15750
2217 11422.0 13 15763
2218 11423.0 13 15776
2219 11424.0 9 15785
2220 11599.0 5 15790
2221 11600.0 17 15807
2222 11601.0 2 15809
2223 10030.0 15 15824
2224 10294.0 5 15829
2225 12387.0 9 15838
2226 11602.0 16 15854
2227 11603.0 12 15866
2228 11604.0 7 15873
2229 11605.0 5 15878
2230 11606.0 6 15884
2231 11607.0 17 15901
2232 11822.0 1 15902
2233 11823.0 4 15906
2234 11824.0 1 15907
2235 11825.0 2 15909
2236 12388.0 7 15916
2237 11826.0 9 15925
2238 11830.0 7 15932
2239 11938.0 8 15940
2240 11939.0 2 15942
2241 11940.0 6 15948
2242 11941.0 5 15953
2243 11942.0 7 15960
2244 11943.0 7 15967
2245 11944.0 8 15975
2246 11945.0 5 15980
2247 12389.0 5 15985
2248 11946.0 10 15995
2249 11947.0 7 16002
2250 11948.0 11 16013
2251 11949.0 4 16017
2252 11950.0 16 16033
2253 11951.0 2 16035
2254 11952.0 3 16038
2255 12001.0 2 16040
2256 12002.0 5 16045
2257 12003.0 4 16049
2258 12390.0 4 16053
2259 12004.0 3 16056
2260 12005.0 2 16058
2261 12006.0 6 16064
2262 12008.0 4 16068
2263 12009.0 3 16071
2264 12010.0 2 16073
2265 12011.0 13 16086
2266 12012.0 6 16092
2267 12013.0 2 16094
2268 12014.0 8 16102
2269 12391.0 12 16114
2270 12015.0 4 16118
2271 12016.0 11 16129
2272 12017.0 4 16133
2273 12018.0 6 16139
2274 12019.0 3 16142
2275 12020.0 5 16147
2276 12021.0 14 16161
2277 12189.0 6 16167
2278 12190.0 1 16168
2279 12191.0 10 16178
2280 12497.0 5 16183
2281 12192.0 8 16191
2282 12193.0 4 16195
2283 12194.0 10 16205
2284 12195.0 8 16213
2285 12196.0 4 16217
2286 12292.0 9 16226
2287 12391.0 7 16233
2288 12392.0 11 16244
2289 1258.0 5 16249
2290 1259.0 5 16254
2291 12498.0 1 16255
2292 1260.0 5 16260
2293 1261.0 1 16261
2294 1262.0 3 16264
2295 1263.0 8 16272
2296 1272.0 4 16276
2297 1273.0 5 16281
2298 1408.0 13 16294
2299 1409.0 8 16302
2300 1410.0 7 16309
2301 1411.0 1 16310
2302 12499.0 9 16319
2303 1412.0 8 16327
2304 1413.0 2 16329
2305 1414.0 6 16335
2306 1415.0 5 16340
2307 1416.0 20 16360
2308 1417.0 14 16374
2309 1418.0 8 16382
2310 1419.0 7 16389
2311 1421.0 5 16394
2312 1422.0 4 16398
2313 5714.0 7 16405
2314 152.0 9 16414
2315 1532.0 2 16416
2316 1533.0 3 16419
2317 1534.0 2 16421
2318 1535.0 4 16425
2319 1536.0 10 16435
2320 1537.0 12 16447
2321 1538.0 5 16452
2322 1539.0 6 16458
2323 153.0 9 16467
2324 5715.0 9 16476
2325 1540.0 3 16479
2326 1541.0 1 16480
2327 1542.0 9 16489
2328 1543.0 7 16496
2329 1544.0 6 16502
2330 1583.0 14 16516
2331 1584.0 20 16536
2332 1585.0 35 16571
2333 1753.0 15 16586
2334 1754.0 4 16590
2335 10295.0 1 16591
2336 5716.0 7 16598
2337 1755.0 9 16607
2338 1756.0 8 16615
2339 1757.0 4 16619
2340 1758.0 7 16626
2341 1759.0 9 16635
2342 1760.0 11 16646
2343 1761.0 3 16649
2344 1762.0 2 16651
2345 1763.0 7 16658
2346 1764.0 5 16663
2347 5717.0 4 16667
2348 1765.0 7 16674
2349 1766.0 15 16689
2350 1845.0 12 16701
2351 1846.0 5 16706
2352 1880.0 7 16713
2353 1881.0 7 16720
2354 1882.0 2 16722
2355 1883.0 2 16724
2356 1884.0 1 16725
2357 190.0 5 16730
2358 5718.0 9 16739
2359 191.0 7 16746
2360 192.0 12 16758
2361 1934.0 8 16766
2362 1935.0 5 16771
2363 1936.0 7 16778
2364 1.0 9 16787
2365 2036.0 5 16792
2366 2037.0 11 16803
2367 2088.0 3 16806
2368 2194.0 21 16827
2369 5719.0 3 16830
2370 2195.0 5 16835
2371 2196.0 7 16842
2372 2197.0 5 16847
2373 2198.0 4 16851
2374 2199.0 12 16863
2375 2200.0 6 16869
2376 2201.0 5 16874
2377 2202.0 4 16878
2378 2203.0 1 16879
2379 2204.0 20 16899
2380 5720.0 8 16907
2381 2237.0 36 16943
2382 2238.0 5 16948
2383 2239.0 2 16950
2384 2240.0 7 16957
2385 2241.0 4 16961
2386 2242.0 3 16964
2387 2243.0 8 16972
2388 2244.0 16 16988
2389 2245.0 10 16998
2390 2246.0 17 17015
2391 5721.0 5 17020
2392 2247.0 5 17025
2393 2248.0 10 17035
2394 2249.0 17 17052
2395 2250.0 5 17057
2396 2251.0 13 17070
2397 2252.0 5 17075
2398 2253.0 7 17082
2399 2254.0 6 17088
2400 2255.0 14 17102
2401 2256.0 7 17109
2402 5722.0 12 17121
2403 2281.0 22 17143
2404 2397.0 9 17152
2405 2398.0 4 17156
2406 2399.0 6 17162
2407 2400.0 4 17166
2408 2401.0 7 17173
2409 2402.0 7 17180
2410 2403.0 5 17185
2411 2404.0 4 17189
2412 2456.0 7 17196
2413 5723.0 2 17198
2414 2457.0 9 17207
2415 2458.0 8 17215
2416 2459.0 12 17227
2417 2460.0 7 17234
2418 2461.0 5 17239
2419 2472.0 5 17244
2420 2473.0 8 17252
2421 2474.0 13 17265
2422 2475.0 9 17274
2423 2476.0 6 17280
2424 5724.0 8 17288
2425 2477.0 13 17301
2426 2525.0 8 17309
2427 2526.0 11 17320
2428 2527.0 3 17323
2429 2539.0 5 17328
2430 2553.0 3 17331
2431 2554.0 2 17333
2432 2562.0 2 17335
2433 2563.0 3 17338
2434 2564.0 4 17342
2435 5725.0 11 17353
2436 2565.0 5 17358
2437 2566.0 7 17365
2438 2567.0 11 17376
2439 2568.0 3 17379
2440 2569.0 4 17383
2441 256.0 5 17388
2442 2570.0 2 17390
2443 2571.0 5 17395
2444 2572.0 3 17398
2445 2573.0 7 17405
2446 10296.0 3 17408
2447 5726.0 5 17413
2448 2574.0 2 17415
2449 2575.0 1 17416
2450 2576.0 2 17418
2451 2577.0 6 17424
2452 2578.0 9 17433
2453 2579.0 5 17438
2454 257.0 13 17451
2455 2580.0 4 17455
2456 2581.0 3 17458
2457 2648.0 10 17468
2458 5727.0 18 17486
2459 2649.0 1 17487
2460 2650.0 4 17491
2461 2651.0 4 17495
2462 2652.0 2 17497
2463 2653.0 4 17501
2464 2654.0 3 17504
2465 2655.0 3 17507
2466 2656.0 3 17510
2467 2657.0 3 17513
2468 2658.0 6 17519
2469 5728.0 6 17525
2470 2659.0 4 17529
2471 265.0 6 17535
2472 2660.0 12 17547
2473 2661.0 5 17552
2474 2662.0 4 17556
2475 2663.0 3 17559
2476 2666.0 4 17563
2477 2667.0 9 17572
2478 2668.0 4 17576
2479 2669.0 6 17582
2480 5854.0 10 17592
2481 266.0 9 17601
2482 2670.0 5 17606
2483 2671.0 7 17613
2484 2672.0 10 17623
2485 2673.0 4 17627
2486 2674.0 20 17647
2487 2675.0 14 17661
2488 2676.0 7 17668
2489 2677.0 23 17691
2490 2678.0 8 17699
2491 5855.0 5 17704
2492 2679.0 12 17716
2493 267.0 5 17721
2494 2680.0 5 17726
2495 2681.0 11 17737
2496 2682.0 29 17766
2497 2683.0 7 17773
2498 268.0 4 17777
2499 269.0 1 17778
2500 270.0 3 17781
2501 2719.0 5 17786
2502 5856.0 1 17787
2503 271.0 7 17794
2504 2720.0 4 17798
2505 2721.0 1 17799
2506 2722.0 10 17809
2507 272.0 7 17816
2508 273.0 7 17823
2509 274.0 4 17827
2510 275.0 5 17832
2511 276.0 4 17836
2512 277.0 10 17846
2513 5857.0 2 17848
2514 278.0 9 17857
2515 279.0 14 17871
2516 280.0 6 17877
2517 281.0 7 17884
2518 282.0 12 17896
2519 283.0 7 17903
2520 284.0 10 17913
2521 285.0 9 17922
2522 286.0 21 17943
2523 2932.0 10 17953
2524 5858.0 15 17968
2525 2933.0 3 17971
2526 2934.0 32 18003
2527 2935.0 12 18015
2528 2936.0 4 18019
2529 2937.0 1 18020
2530 2938.0 4 18024
2531 2.0 5 18029
2532 3037.0 12 18041
2533 3038.0 22 18063
2534 3039.0 12 18075
2535 5859.0 4 18079
2536 3040.0 6 18085
2537 3041.0 7 18092
2538 3042.0 8 18100
2539 3043.0 7 18107
2540 3044.0 7 18114
2541 3045.0 19 18133
2542 3046.0 7 18140
2543 3047.0 11 18151
2544 3048.0 10 18161
2545 3049.0 9 18170
2546 5860.0 3 18173
2547 3058.0 3 18176
2548 3059.0 8 18184
2549 3060.0 7 18191
2550 3061.0 9 18200
2551 3062.0 5 18205
2552 3063.0 7 18212
2553 3317.0 11 18223
2554 3318.0 6 18229
2555 3319.0 6 18235
2556 3320.0 6 18241
2557 10297.0 4 18245
2558 5923.0 3 18248
2559 3321.0 16 18264
2560 3322.0 19 18283
2561 3323.0 4 18287
2562 3324.0 5 18292
2563 3325.0 6 18298
2564 3415.0 7 18305
2565 3435.0 2 18307
2566 3436.0 2 18309
2567 3437.0 0 18309
2568 3438.0 14 18323
2569 5924.0 3 18326
2570 3439.0 5 18331
2571 3455.0 30 18361
2572 3460.0 4 18365
2573 3461.0 7 18372
2574 3462.0 6 18378
2575 3463.0 5 18383
2576 3464.0 5 18388
2577 3465.0 6 18394
2578 3466.0 6 18400
2579 3467.0 18 18418
2580 5925.0 3 18421
2581 3468.0 4 18425
2582 3491.0 7 18432
2583 3492.0 8 18440
2584 3493.0 10 18450
2585 3494.0 10 18460
2586 3495.0 9 18469
2587 3496.0 26 18495
2588 3497.0 3 18498
2589 3498.0 7 18505
2590 3499.0 8 18513
2591 5926.0 8 18521
2592 3500.0 4 18525
2593 3501.0 26 18551
2594 3502.0 2 18553
2595 3503.0 6 18559
2596 3504.0 34 18593
2597 3505.0 8 18601
2598 3506.0 3 18604
2599 3507.0 11 18615
2600 3508.0 25 18640
2601 3509.0 10 18650
2602 5927.0 7 18657
2603 3510.0 16 18673
2604 3553.0 7 18680
2605 3554.0 6 18686
2606 3555.0 3 18689
2607 3590.0 3 18692
2608 3591.0 2 18694
2609 3592.0 2 18696
2610 3593.0 3 18699
2611 3594.0 9 18708
2612 3595.0 7 18715
2613 5928.0 7 18722
2614 3596.0 4 18726
2615 3597.0 5 18731
2616 3667.0 8 18739
2617 3787.0 7 18746
2618 3788.0 2 18748
2619 3789.0 7 18755
2620 3985.0 8 18763
2621 3986.0 6 18769
2622 3.0 5 18774
2623 4001.0 16 18790
2624 5929.0 2 18792
2625 4077.0 5 18797
2626 4078.0 3 18800
2627 4079.0 4 18804
2628 4080.0 3 18807
2629 4081.0 8 18815
2630 4082.0 26 18841
2631 4083.0 10 18851
2632 4084.0 4 18855
2633 4085.0 5 18860
2634 4086.0 6 18866
2635 5930.0 3 18869
2636 4087.0 13 18882
2637 4088.0 8 18890
2638 4089.0 5 18895
2639 408.0 23 18918
2640 4090.0 7 18925
2641 4091.0 6 18931
2642 4092.0 8 18939
2643 4093.0 15 18954
2644 4094.0 27 18981
2645 4095.0 15 18996
2646 5931.0 6 19002
2647 4096.0 9 19011
2648 4097.0 13 19024
2649 4098.0 3 19027
2650 409.0 4 19031
2651 410.0 15 19046
2652 411.0 4 19050
2653 412.0 3 19053
2654 413.0 7 19060
2655 4142.0 3 19063
2656 4143.0 7 19070
2657 5932.0 3 19073
2658 4144.0 14 19087
2659 414.0 7 19094
2660 415.0 5 19099
2661 416.0 2 19101
2662 417.0 8 19109
2663 418.0 4 19113
2664 419.0 8 19121
2665 420.0 4 19125
2666 421.0 11 19136
2667 4246.0 5 19141
2668 10298.0 4 19145
2669 5933.0 16 19161
2670 4247.0 6 19167
2671 4248.0 2 19169
2672 4279.0 4 19173
2673 427.0 2 19175
2674 4280.0 4 19179
2675 4281.0 5 19184
2676 4282.0 5 19189
2677 4283.0 4 19193
2678 4284.0 8 19201
2679 428.0 1 19202
2680 6118.0 1 19203
2681 429.0 1 19204
2682 430.0 2 19206
2683 431.0 13 19219
2684 432.0 1 19220
2685 4337.0 5 19225
2686 4338.0 3 19228
2687 4339.0 5 19233
2688 433.0 0 19233
2689 4340.0 10 19243
2690 4341.0 7 19250
2691 6119.0 2 19252
2692 434.0 3 19255
2693 435.0 5 19260
2694 436.0 3 19263
2695 437.0 3 19266
2696 438.0 6 19272
2697 439.0 3 19275
2698 440.0 8 19283
2699 441.0 3 19286
2700 442.0 9 19295
2701 443.0 17 19312
2702 6120.0 2 19314
2703 444.0 5 19319
2704 445.0 24 19343
2705 4466.0 4 19347
2706 4467.0 6 19353
2707 4468.0 5 19358
2708 4469.0 21 19379
2709 446.0 4 19383
2710 4470.0 6 19389
2711 4471.0 5 19394
2712 4472.0 3 19397
2713 6121.0 2 19399
2714 4473.0 14 19413
2715 4474.0 3 19416
2716 4475.0 8 19424
2717 4479.0 14 19438
2718 447.0 15 19453
2719 4480.0 10 19463
2720 4481.0 3 19466
2721 4482.0 11 19477
2722 4483.0 5 19482
2723 4484.0 8 19490
2724 6122.0 6 19496
2725 4485.0 5 19501
2726 4486.0 5 19506
2727 4487.0 2 19508
2728 4488.0 4 19512
2729 4489.0 7 19519
2730 4490.0 9 19528
2731 4491.0 8 19536
2732 4503.0 1 19537
2733 4514.0 2 19539
2734 4515.0 3 19542
2735 6123.0 8 19550
2736 4522.0 6 19556
2737 4523.0 2 19558
2738 4524.0 8 19566
2739 4525.0 11 19577
2740 4526.0 5 19582
2741 4527.0 8 19590
2742 4528.0 20 19610
2743 4529.0 13 19623
2744 4530.0 9 19632
2745 4608.0 5 19637
2746 6124.0 2 19639
2747 4609.0 3 19642
2748 4610.0 3 19645
2749 4611.0 7 19652
2750 4612.0 2 19654
2751 4613.0 7 19661
2752 4614.0 5 19666
2753 4615.0 2 19668
2754 4616.0 10 19678
2755 4617.0 5 19683
2756 4618.0 11 19694
2757 6125.0 9 19703
2758 4619.0 5 19708
2759 4635.0 4 19712
2760 4636.0 4 19716
2761 4658.0 25 19741
2762 4659.0 4 19745
2763 4660.0 13 19758
2764 4661.0 10 19768
2765 4662.0 4 19772
2766 4663.0 9 19781
2767 4664.0 13 19794
2768 6126.0 4 19798
2769 4665.0 6 19804
2770 4666.0 3 19807
2771 4667.0 10 19817
2772 4668.0 18 19835
2773 4669.0 14 19849
2774 4670.0 6 19855
2775 4671.0 14 19869
2776 4672.0 14 19883
2777 4673.0 4 19887
2778 4674.0 12 19899
2779 10299.0 7 19906
2780 6127.0 1 19907
2781 4704.0 2 19909
2782 4705.0 7 19916
2783 4706.0 4 19920
2784 4720.0 9 19929
2785 4829.0 20 19949
2786 4830.0 1 19950
2787 4831.0 3 19953
2788 4832.0 2 19955
2789 4833.0 8 19963
2790 4971.0 5 19968
2791 6128.0 8 19976
2792 4972.0 3 19979
2793 4976.0 5 19984
2794 4977.0 11 19995
2795 4978.0 7 20002
2796 4979.0 11 20013
2797 4980.0 7 20020
2798 4981.0 28 20048
2799 4982.0 10 20058
2800 4983.0 9 20067
2801 4984.0 6 20073
2802 6129.0 10 20083
2803 4985.0 3 20086
2804 4986.0 1 20087
2805 4987.0 7 20094
2806 4988.0 5 20099
2807 4989.0 6 20105
2808 4990.0 13 20118
2809 4991.0 9 20127
2810 4.0 5 20132
2811 5011.0 5 20137
2812 5012.0 2 20139
2813 6130.0 3 20142
2814 5013.0 5 20147
2815 5107.0 3 20150
2816 5154.0 6 20156
2817 5155.0 2 20158
2818 5226.0 9 20167
2819 5227.0 7 20174
2820 5228.0 5 20179
2821 5229.0 9 20188
2822 5230.0 11 20199
2823 5231.0 5 20204
2824 6131.0 3 20207
2825 5232.0 3 20210
2826 5233.0 4 20214
2827 5234.0 6 20220
2828 5235.0 19 20239
2829 5236.0 4 20243
2830 5237.0 4 20247
2831 5238.0 2 20249
2832 5239.0 2 20251
2833 5240.0 3 20254
2834 5241.0 4 20258
2835 6132.0 5 20263
2836 5242.0 7 20270
2837 5243.0 3 20273
2838 5244.0 2 20275
2839 5245.0 6 20281
2840 5246.0 3 20284
2841 5247.0 2 20286
2842 5248.0 8 20294
2843 5249.0 14 20308
2844 524.0 12 20320
2845 5250.0 4 20324
2846 6133.0 5 20329
2847 5251.0 9 20338
2848 5252.0 9 20347
2849 5253.0 10 20357
2850 5254.0 12 20369
2851 5255.0 1 20370
2852 5256.0 6 20376
2853 5257.0 3 20379
2854 5258.0 2 20381
2855 5259.0 6 20387
2856 525.0 6 20393
2857 6338.0 4 20397
2858 5260.0 8 20405
2859 5261.0 9 20414
2860 5262.0 9 20423
2861 526.0 22 20445
2862 5293.0 4 20449
2863 5294.0 3 20452
2864 5295.0 8 20460
2865 5296.0 6 20466
2866 5297.0 6 20472
2867 5298.0 7 20479
2868 6339.0 4 20483
2869 5299.0 6 20489
2870 5300.0 6 20495
2871 5301.0 5 20500
2872 5302.0 3 20503
2873 5303.0 2 20505
2874 5304.0 5 20510
2875 5305.0 8 20518
2876 5306.0 9 20527
2877 5307.0 20 20547
2878 5308.0 1 20548
2879 6340.0 20 20568
2880 5309.0 8 20576
2881 5310.0 7 20583
2882 5311.0 5 20588
2883 5312.0 13 20601
2884 5313.0 20 20621
2885 5314.0 23 20644
2886 5315.0 20 20664
2887 5316.0 12 20676
2888 5317.0 3 20679
2889 5318.0 5 20684
2890 10300.0 4 20688
2891 6341.0 8 20696
2892 5319.0 13 20709
2893 5320.0 4 20713
2894 5321.0 4 20717
2895 5326.0 12 20729
2896 5327.0 7 20736
2897 5328.0 5 20741
2898 5329.0 4 20745
2899 5330.0 6 20751
2900 5331.0 5 20756
2901 5332.0 7 20763
2902 6342.0 11 20774
2903 5348.0 7 20781
2904 5349.0 5 20786
2905 5350.0 6 20792
2906 5351.0 23 20815
2907 5352.0 8 20823
2908 5353.0 15 20838
2909 5354.0 12 20850
2910 5355.0 12 20862
2911 535.0 6 20868
2912 5429.0 8 20876
2913 6343.0 6 20882
2914 5430.0 5 20887
2915 5431.0 7 20894
2916 5432.0 3 20897
2917 5433.0 2 20899
2918 5434.0 6 20905
2919 5435.0 10 20915
2920 5436.0 2 20917
2921 5437.0 5 20922
2922 5438.0 10 20932
2923 5439.0 4 20936
2924 6344.0 4 20940
2925 5440.0 1 20941
2926 5441.0 4 20945
2927 5442.0 4 20949
2928 5443.0 2 20951
2929 5444.0 4 20955
2930 5445.0 2 20957
2931 5446.0 7 20964
2932 5447.0 4 20968
2933 5448.0 4 20972
2934 5449.0 11 20983
2935 6345.0 3 20986
2936 545.0 9 20995
2937 546.0 5 21000
2938 547.0 7 21007
2939 548.0 7 21014
2940 5498.0 5 21019
2941 5499.0 3 21022
2942 549.0 4 21026
2943 5500.0 7 21033
2944 5501.0 4 21037
2945 5502.0 5 21042
2946 6346.0 3 21045
2947 5503.0 13 21058
2948 5557.0 2 21060
2949 5558.0 6 21066
2950 5559.0 10 21076
2951 5781.0 5 21081
2952 5782.0 2 21083
2953 5783.0 9 21092
2954 5784.0 33 21125
2955 5785.0 5 21130
2956 5786.0 6 21136
2957 6347.0 10 21146
2958 5787.0 5 21151
2959 5788.0 5 21156
2960 5789.0 9 21165
2961 5840.0 5 21170
2962 5841.0 9 21179
2963 5842.0 11 21190
2964 5843.0 14 21204
2965 5844.0 17 21221
2966 5845.0 6 21227
2967 5846.0 13 21240
2968 6348.0 2 21242
2969 5847.0 5 21247
2970 5848.0 7 21254
2971 5849.0 3 21257
2972 5850.0 3 21260
2973 5851.0 27 21287
2974 5852.0 1 21288
2975 5888.0 15 21303
2976 5889.0 6 21309
2977 5890.0 9 21318
2978 5891.0 4 21322
2979 6349.0 2 21324
2980 5892.0 10 21334
2981 5893.0 5 21339
2982 58.0 11 21350
2983 5936.0 5 21355
2984 5937.0 10 21365
2985 5938.0 16 21381
2986 5996.0 6 21387
2987 59.0 4 21391
2988 5.0 13 21404
2989 6025.0 9 21413
2990 6350.0 4 21417
2991 6026.0 2 21419
2992 6027.0 4 21423
2993 6079.0 19 21442
2994 6184.0 19 21461
2995 6185.0 12 21473
2996 6186.0 2 21475
2997 6187.0 7 21482
2998 6188.0 3 21485
2999 6216.0 4 21489
3000 6217.0 5 21494
3001 10301.0 4 21498
3002 6351.0 5 21503
3003 6218.0 9 21512
3004 6219.0 4 21516
3005 6220.0 9 21525
3006 6221.0 9 21534
3007 6222.0 5 21539
3008 6223.0 5 21544
3009 6224.0 13 21557
3010 6225.0 3 21560
3011 6267.0 7 21567
3012 6268.0 5 21572
3013 6352.0 2 21574
3014 6269.0 3 21577
3015 6270.0 16 21593
3016 6271.0 6 21599
3017 6272.0 6 21605
3018 6273.0 13 21618
3019 6274.0 4 21622
3020 6275.0 6 21628
3021 6276.0 5 21633
3022 6277.0 19 21652
3023 6278.0 7 21659
3024 6353.0 2 21661
3025 6279.0 5 21666
3026 6280.0 6 21672
3027 6281.0 3 21675
3028 6335.0 4 21679
3029 6336.0 7 21686
3030 6337.0 2 21688
3031 6338.0 1 21689
3032 6339.0 4 21693
3033 6368.0 4 21697
3034 6369.0 4 21701
3035 6354.0 3 21704
3036 6370.0 6 21710
3037 6371.0 5 21715
3038 6388.0 3 21718
3039 6389.0 6 21724
3040 6390.0 1 21725
3041 6403.0 3 21728
3042 6404.0 6 21734
3043 6405.0 11 21745
3044 6406.0 15 21760
3045 6407.0 5 21765
3046 6355.0 10 21775
3047 6408.0 9 21784
3048 6409.0 3 21787
3049 6410.0 12 21799
3050 6411.0 27 21826
3051 6412.0 17 21843
3052 6413.0 5 21848
3053 6414.0 27 21875
3054 6415.0 11 21886
3055 6416.0 10 21896
3056 6433.0 8 21904
3057 6356.0 1 21905
3058 6466.0 4 21909
3059 6467.0 5 21914
3060 6468.0 3 21917
3061 6469.0 5 21922
3062 6470.0 16 21938
3063 6471.0 2 21940
3064 6472.0 5 21945
3065 6473.0 5 21950
3066 6474.0 3 21953
3067 6475.0 3 21956
3068 6357.0 6 21962
3069 6476.0 7 21969
3070 6477.0 6 21975
3071 6508.0 9 21984
3072 6509.0 5 21989
3073 6510.0 2 21991
3074 6511.0 11 22002
3075 6512.0 6 22008
3076 6513.0 5 22013
3077 6514.0 7 22020
3078 6515.0 9 22029
3079 6358.0 4 22033
3080 6526.0 6 22039
3081 652.0 8 22047
3082 653.0 7 22054
3083 654.0 3 22057
3084 655.0 7 22064
3085 656.0 10 22074
3086 6579.0 6 22080
3087 6580.0 7 22087
3088 6581.0 11 22098
3089 6582.0 5 22103
3090 6359.0 3 22106
3091 6583.0 10 22116
3092 6584.0 25 22141
3093 6585.0 4 22145
3094 6586.0 8 22153
3095 6826.0 11 22164
3096 6827.0 2 22166
3097 6828.0 9 22175
3098 6829.0 5 22180
3099 6830.0 5 22185
3100 6831.0 8 22193
3101 6360.0 1 22194
3102 6832.0 3 22197
3103 6833.0 9 22206
3104 6834.0 4 22210
3105 6835.0 17 22227
3106 6836.0 7 22234
3107 6837.0 9 22243
3108 6838.0 17 22260
3109 6839.0 3 22263
3110 6840.0 2 22265
3111 6841.0 28 22293
3112 10302.0 6 22299
3113 6361.0 8 22307
3114 6858.0 3 22310
3115 6872.0 5 22315
3116 6873.0 9 22324
3117 6874.0 3 22327
3118 694.0 12 22339
3119 695.0 3 22342
3120 696.0 5 22347
3121 6978.0 10 22357
3122 6979.0 8 22365
3123 697.0 2 22367
3124 6364.0 10 22377
3125 6980.0 7 22384
3126 6981.0 4 22388
3127 698.0 5 22393
3128 7099.0 3 22396
3129 7100.0 7 22403
3130 7117.0 4 22407
3131 7118.0 5 22412
3132 7119.0 9 22421
3133 7120.0 3 22424
3134 7121.0 5 22429
3135 6365.0 3 22432
3136 7122.0 9 22441
3137 7123.0 5 22446
3138 7124.0 8 22454
3139 7125.0 12 22466
3140 7126.0 11 22477
3141 7127.0 7 22484
3142 7128.0 6 22490
3143 7129.0 6 22496
3144 7130.0 1 22497
3145 7131.0 5 22502
3146 6366.0 0 22502
3147 7132.0 14 22516
3148 7133.0 14 22530
3149 7134.0 22 22552
3150 7135.0 9 22561
3151 7136.0 17 22578
3152 7137.0 14 22592
3153 7138.0 5 22597
3154 7139.0 4 22601
3155 7140.0 6 22607
3156 7141.0 8 22615
3157 6367.0 2 22617
3158 7142.0 23 22640
3159 7276.0 3 22643
3160 7277.0 1 22644
3161 7278.0 7 22651
3162 7279.0 6 22657
3163 7280.0 5 22662
3164 7322.0 4 22666
3165 7323.0 6 22672
3166 7344.0 4 22676
3167 7345.0 11 22687
3168 6368.0 2 22689
3169 7459.0 8 22697
3170 7475.0 7 22704
3171 7476.0 14 22718
3172 74.0 4 22722
3173 7515.0 15 22737
3174 7516.0 3 22740
3175 7517.0 6 22746
3176 7518.0 15 22761
3177 7519.0 16 22777
3178 7520.0 1 22778
3179 6369.0 2 22780
3180 7521.0 6 22786
3181 7522.0 3 22789
3182 7523.0 6 22795
3183 7524.0 5 22800
3184 7525.0 20 22820
3185 7526.0 13 22833
3186 7527.0 26 22859
3187 756.0 9 22868
3188 757.0 2 22870
3189 7581.0 3 22873
3190 6370.0 6 22879
3191 7582.0 6 22885
3192 7583.0 4 22889
3193 7584.0 13 22902
3194 7585.0 23 22925
3195 758.0 9 22934
3196 759.0 15 22949
3197 760.0 4 22953
3198 7699.0 11 22964
3199 7734.0 31 22995
3200 7735.0 3 22998
3201 6371.0 9 23007
3202 7736.0 5 23012
3203 7737.0 5 23017
3204 8073.0 35 23052
3205 8074.0 4 23056
3206 8075.0 6 23062
3207 8076.0 0 23062
3208 815.0 5 23067
3209 816.0 3 23070
3210 817.0 5 23075
3211 8220.0 9 23084
3212 6372.0 3 23087
3213 8221.0 22 23109
3214 8222.0 3 23112
3215 8223.0 11 23123
3216 8224.0 19 23142
3217 8225.0 9 23151
3218 8226.0 27 23178
3219 8246.0 4 23182
3220 8247.0 6 23188
3221 8248.0 8 23196
3222 8249.0 3 23199
3223 10303.0 6 23205
3224 6373.0 6 23211
3225 8250.0 7 23218
3226 8251.0 3 23221
3227 8252.0 12 23233
3228 8253.0 3 23236
3229 8270.0 5 23241
3230 8271.0 6 23247
3231 8272.0 6 23253
3232 8316.0 5 23258
3233 8317.0 9 23267
3234 8318.0 5 23272
3235 6374.0 6 23278
3236 8319.0 29 23307
3237 8320.0 11 23318
3238 8321.0 3 23321
3239 8336.0 2 23323
3240 8337.0 9 23332
3241 8338.0 3 23335
3242 8339.0 8 23343
3243 8340.0 2 23345
3244 8341.0 6 23351
3245 8342.0 2 23353
3246 6375.0 7 23360
3247 8343.0 4 23364
3248 8344.0 5 23369
3249 8345.0 14 23383
3250 8346.0 6 23389
3251 8347.0 6 23395
3252 8348.0 7 23402
3253 8349.0 5 23407
3254 8350.0 20 23427
3255 8351.0 15 23442
3256 844.0 8 23450
3257 6376.0 3 23453
3258 845.0 3 23456
3259 846.0 5 23461
3260 847.0 4 23465
3261 8508.0 4 23469
3262 8509.0 7 23476
3263 8522.0 1 23477
3264 8523.0 7 23484
3265 8524.0 5 23489
3266 8525.0 9 23498
3267 8526.0 5 23503
3268 6377.0 2 23505
3269 8527.0 1 23506
3270 8528.0 9 23515
3271 8529.0 12 23527
3272 8530.0 24 23551
3273 8531.0 20 23571
3274 8532.0 11 23582
3275 8533.0 9 23591
3276 8534.0 14 23605
3277 8535.0 10 23615
3278 8536.0 19 23634
3279 6378.0 5 23639
3280 8537.0 12 23651
3281 8538.0 17 23668
3282 8539.0 4 23672
3283 8584.0 4 23676
3284 8585.0 2 23678
3285 8586.0 4 23682
3286 8587.0 3 23685
3287 8588.0 7 23692
3288 8589.0 9 23701
3289 8590.0 11 23712
3290 6379.0 29 23741
3291 8592.0 7 23748
3292 8593.0 2 23750
3293 8594.0 8 23758
3294 8595.0 3 23761
3295 8596.0 4 23765
3296 8597.0 14 23779
3297 8621.0 0 23779
3298 8622.0 5 23784
3299 8623.0 6 23790
3300 8624.0 5 23795
3301 6380.0 7 23802
3302 8625.0 2 23804
3303 8626.0 7 23811
3304 8627.0 2 23813
3305 8628.0 12 23825
3306 8629.0 5 23830
3307 8630.0 16 23846
3308 8631.0 6 23852
3309 8632.0 5 23857
3310 8633.0 4 23861
3311 8634.0 3 23864
3312 6381.0 13 23877
3313 8635.0 10 23887
3314 8636.0 9 23896
3315 8637.0 6 23902
3316 870.0 5 23907
3317 871.0 6 23913
3318 872.0 4 23917
3319 873.0 9 23926
3320 874.0 17 23943
3321 875.0 3 23946
3322 876.0 5 23951
3323 6382.0 1 23952
3324 877.0 5 23957
3325 878.0 7 23964
3326 879.0 9 23973
3327 8808.0 7 23980
3328 8809.0 4 23984
3329 880.0 6 23990
3330 8810.0 5 23995
3331 8811.0 2 23997
3332 8812.0 17 24014
3333 8813.0 5 24019
3334 10031.0 11 24030
3335 10304.0 8 24038
3336 6383.0 6 24044
3337 8814.0 33 24077
3338 8815.0 20 24097
3339 8816.0 8 24105
3340 8817.0 13 24118
3341 8818.0 9 24127
3342 881.0 4 24131
3343 882.0 20 24151
3344 883.0 5 24156
3345 884.0 18 24174
3346 885.0 8 24182
3347 6384.0 5 24187
3348 9005.0 4 24191
3349 9006.0 4 24195
3350 9007.0 2 24197
3351 9026.0 4 24201
3352 9027.0 5 24206
3353 9028.0 11 24217
3354 9029.0 11 24228
3355 9032.0 18 24246
3356 9033.0 24 24270
3357 9034.0 11 24281
3358 6385.0 7 24288
3359 9057.0 6 24294
3360 9071.0 3 24297
3361 9072.0 5 24302
3362 9159.0 3 24305
3363 9160.0 3 24308
3364 9161.0 7 24315
3365 9162.0 12 24327
3366 9163.0 7 24334
3367 9164.0 6 24340
3368 9165.0 5 24345
3369 6386.0 26 24371
3370 9171.0 8 24379
3371 9188.0 5 24384
3372 9189.0 6 24390
3373 9190.0 5 24395
3374 9191.0 3 24398
3375 9192.0 6 24404
3376 9193.0 7 24411
3377 9194.0 2 24413
3378 9195.0 10 24423
3379 9196.0 4 24427
3380 6387.0 5 24432
3381 9197.0 10 24442
3382 9198.0 4 24446
3383 9199.0 1 24447
3384 925.0 11 24458
3385 926.0 26 24484
3386 927.0 18 24502
3387 928.0 7 24509
3388 9302.0 5 24514
3389 9303.0 19 24533
3390 9377.0 6 24539
3391 6388.0 5 24544
3392 9378.0 3 24547
3393 9393.0 2 24549
3394 9394.0 4 24553
3395 9395.0 4 24557
3396 9396.0 7 24564
3397 9397.0 7 24571
3398 9398.0 3 24574
3399 9399.0 7 24581
3400 939.0 4 24585
3401 9400.0 6 24591
3402 6394.0 8 24599
3403 9401.0 8 24607
3404 940.0 6 24613
3405 941.0 3 24616
3406 942.0 8 24624
3407 943.0 4 24628
3408 944.0 7 24635
3409 945.0 10 24645
3410 946.0 12 24657
3411 950.0 4 24661
3412 9542.0 7 24668
3413 6395.0 2 24670
3414 9543.0 4 24674
3415 9544.0 5 24679
3416 9545.0 7 24686
3417 9546.0 23 24709
3418 9547.0 8 24717
3419 9548.0 9 24726
3420 9549.0 8 24734
3421 9550.0 6 24740
3422 9558.0 10 24750
3423 9559.0 4 24754
3424 6396.0 3 24757
3425 9560.0 5 24762
3426 9561.0 8 24770
3427 9562.0 4 24774
3428 9563.0 10 24784
3429 9583.0 9 24793
3430 9584.0 8 24801
3431 967.0 7 24808
3432 968.0 28 24836
3433 969.0 17 24853
3434 970.0 6 24859
3435 6397.0 2 24861
3436 971.0 12 24873
3437 972.0 4 24877
3438 973.0 1 24878
3439 974.0 2 24880
3440 9750.0 4 24884
3441 9751.0 3 24887
3442 9752.0 4 24891
3443 9753.0 9 24900
3444 9754.0 9 24909
3445 9755.0 8 24917
3446 10305.0 4 24921
3447 6398.0 7 24928
3448 9756.0 4 24932
3449 975.0 3 24935
3450 976.0 7 24942
3451 977.0 9 24951
3452 9822.0 2 24953
3453 9823.0 25 24978
3454 9895.0 2 24980
3455 9993.0 7 24987
3456 9994.0 8 24995
3457 9995.0 5 25000
3458 6399.0 2 25002
3459 9996.0 13 25015
3460 6400.0 7 25022
3461 6401.0 10 25032
3462 6402.0 4 25036
3463 6403.0 10 25046
3464 6404.0 4 25050
3465 6405.0 3 25053
3466 6406.0 3 25056
3467 6407.0 2 25058
3468 10306.0 5 25063
3469 6408.0 6 25069
3470 6409.0 11 25080
3471 6410.0 6 25086
3472 6411.0 8 25094
3473 6412.0 8 25102
3474 6413.0 6 25108
3475 6414.0 7 25115
3476 6415.0 4 25119
3477 6416.0 14 25133
3478 6417.0 7 25140
3479 10307.0 10 25150
3480 6418.0 6 25156
3481 6419.0 8 25164
3482 6420.0 5 25169
3483 6421.0 9 25178
3484 6422.0 19 25197
3485 6529.0 5 25202
3486 6530.0 13 25215
3487 6531.0 6 25221
3488 6532.0 8 25229
3489 6533.0 4 25233
3490 10308.0 4 25237
3491 6534.0 4 25241
3492 6535.0 9 25250
3493 6536.0 10 25260
3494 6537.0 1 25261
3495 6538.0 4 25265
3496 6539.0 21 25286
3497 6540.0 4 25290
3498 6541.0 6 25296
3499 6542.0 3 25299
3500 6543.0 5 25304
3501 10309.0 3 25307
3502 6544.0 5 25312
3503 6545.0 10 25322
3504 6546.0 4 25326
3505 6547.0 12 25338
3506 6548.0 4 25342
3507 6549.0 6 25348
3508 6550.0 6 25354
3509 6551.0 6 25360
3510 6552.0 5 25365
3511 6553.0 9 25374
3512 10310.0 11 25385
3513 6554.0 10 25395
3514 6555.0 8 25403
3515 6556.0 10 25413
3516 6557.0 11 25424
3517 6558.0 7 25431
3518 6664.0 5 25436
3519 6665.0 3 25439
3520 6666.0 13 25452
3521 6667.0 3 25455
3522 6668.0 21 25476
3523 10311.0 27 25503
3524 6669.0 13 25516
3525 6670.0 8 25524
3526 6671.0 2 25526
3527 6672.0 3 25529
3528 6673.0 2 25531
3529 6674.0 6 25537
3530 6675.0 7 25544
3531 6676.0 28 25572
3532 6677.0 3 25575
3533 6678.0 9 25584
3534 10385.0 3 25587
3535 6679.0 14 25601
3536 6680.0 8 25609
3537 6681.0 5 25614
3538 6682.0 6 25620
3539 6683.0 5 25625
3540 6684.0 5 25630
3541 6685.0 18 25648
3542 6686.0 7 25655
3543 6687.0 6 25661
3544 6688.0 7 25668
3545 10386.0 4 25672
3546 6689.0 10 25682
3547 6690.0 4 25686
3548 6691.0 4 25690
3549 6692.0 16 25706
3550 6996.0 4 25710
3551 6997.0 5 25715
3552 6998.0 11 25726
3553 6999.0 9 25735
3554 7000.0 8 25743
3555 7001.0 3 25746
3556 10032.0 1 25747
3557 10387.0 11 25758
3558 7002.0 4 25762
3559 7003.0 7 25769
3560 7004.0 5 25774
3561 7005.0 5 25779
3562 7006.0 10 25789
3563 7007.0 5 25794
3564 7008.0 5 25799
3565 7009.0 12 25811
3566 7010.0 3 25814
3567 7011.0 8 25822
3568 10388.0 8 25830
3569 7012.0 4 25834
3570 7013.0 4 25838
3571 7014.0 10 25848
3572 7015.0 7 25855
3573 7016.0 6 25861
3574 7017.0 8 25869
3575 7018.0 23 25892
3576 7019.0 19 25911
3577 7020.0 23 25934
3578 7142.0 9 25943
3579 10509.0 11 25954
3580 7143.0 5 25959
3581 7144.0 10 25969
3582 7145.0 3 25972
3583 7146.0 2 25974
3584 7147.0 3 25977
3585 7148.0 3 25980
3586 7149.0 3 25983
3587 7150.0 9 25992
3588 7151.0 7 25999
3589 7152.0 3 26002
3590 10510.0 4 26006
3591 7153.0 10 26016
3592 7154.0 5 26021
3593 7155.0 5 26026
3594 7156.0 10 26036
3595 7157.0 6 26042
3596 7158.0 5 26047
3597 7159.0 5 26052
3598 7160.0 4 26056
3599 7161.0 3 26059
3600 7162.0 7 26066
3601 10511.0 10 26076
3602 7163.0 1 26077
3603 7164.0 22 26099
3604 7165.0 2 26101
3605 7166.0 10 26111
3606 7167.0 7 26118
3607 7168.0 15 26133
3608 7169.0 5 26138
3609 7170.0 3 26141
3610 7171.0 25 26166
3611 7237.0 2 26168
3612 10512.0 3 26171
3613 7238.0 17 26188
3614 7239.0 2 26190
3615 7240.0 1 26191
3616 7259.0 2 26193
3617 7260.0 7 26200
3618 7261.0 5 26205
3619 7262.0 8 26213
3620 7263.0 4 26217
3621 7264.0 1 26218
3622 7265.0 6 26224
3623 10513.0 3 26227
3624 7266.0 7 26234
3625 7267.0 15 26249
3626 7268.0 7 26256
3627 7269.0 5 26261
3628 7270.0 3 26264
3629 7271.0 5 26269
3630 7459.0 13 26282
3631 7460.0 8 26290
3632 7461.0 2 26292
3633 7462.0 2 26294
3634 10514.0 6 26300
3635 7463.0 12 26312
3636 7464.0 3 26315
3637 7465.0 40 26355
3638 7466.0 3 26358
3639 7467.0 11 26369
3640 7468.0 4 26373
3641 7469.0 3 26376
3642 7470.0 3 26379
3643 7471.0 5 26384
3644 7472.0 5 26389
3645 10515.0 4 26393
3646 7473.0 3 26396
3647 7474.0 3 26399
3648 7475.0 9 26408
3649 7476.0 3 26411
3650 7477.0 5 26416
3651 7478.0 7 26423
3652 7479.0 6 26429
3653 7480.0 5 26434
3654 7481.0 10 26444
3655 7482.0 5 26449
3656 10516.0 24 26473
3657 7483.0 10 26483
3658 7484.0 25 26508
3659 7485.0 5 26513
3660 7486.0 16 26529
3661 7632.0 12 26541
3662 7633.0 12 26553
3663 7634.0 4 26557
3664 7635.0 8 26565
3665 7636.0 7 26572
3666 7637.0 6 26578
3667 10033.0 9 26587
3668 10517.0 4 26591
3669 7638.0 9 26600
3670 7639.0 5 26605
3671 7640.0 18 26623
3672 7641.0 2 26625
3673 7642.0 9 26634
3674 7643.0 4 26638
3675 7644.0 5 26643
3676 7645.0 7 26650
3677 7646.0 2 26652
3678 7647.0 12 26664
3679 10518.0 8 26672
3680 7648.0 5 26677
3681 7649.0 4 26681
3682 7883.0 8 26689
3683 7884.0 3 26692
3684 7885.0 14 26706
3685 7886.0 3 26709
3686 7887.0 5 26714
3687 7888.0 1 26715
3688 7889.0 1 26716
3689 7890.0 11 26727
3690 10519.0 4 26731
3691 7891.0 12 26743
3692 7892.0 1 26744
3693 7893.0 19 26763
3694 7944.0 8 26771
3695 7945.0 11 26782
3696 7946.0 10 26792
3697 7947.0 3 26795
3698 7948.0 17 26812
3699 7949.0 10 26822
3700 7950.0 7 26829
3701 10520.0 8 26837
3702 7951.0 8 26845
3703 7952.0 6 26851
3704 7953.0 1 26852
3705 7954.0 7 26859
3706 7955.0 4 26863
3707 7956.0 4 26867
3708 7957.0 5 26872
3709 7958.0 1 26873
3710 7959.0 6 26879
3711 7960.0 6 26885
3712 10521.0 10 26895
3713 7961.0 16 26911
3714 7962.0 9 26920
3715 7963.0 3 26923
3716 7964.0 4 26927
3717 7965.0 6 26933
3718 7966.0 9 26942
3719 7967.0 8 26950
3720 7968.0 11 26961
3721 7969.0 2 26963
3722 7970.0 5 26968
3723 10522.0 6 26974
3724 7971.0 4 26978
3725 7972.0 3 26981
3726 7973.0 5 26986
3727 7976.0 6 26992
3728 7977.0 7 26999
3729 7978.0 11 27010
3730 7979.0 6 27016
3731 7980.0 4 27020
3732 7981.0 7 27027
3733 7982.0 4 27031
3734 10523.0 12 27043
3735 7983.0 9 27052
3736 7984.0 9 27061
3737 7985.0 37 27098
3738 7986.0 7 27105
3739 7987.0 8 27113
3740 7988.0 2 27115
3741 7989.0 15 27130
3742 7990.0 18 27148
3743 7991.0 12 27160
3744 7992.0 10 27170
3745 10524.0 3 27173
3746 7993.0 6 27179
3747 7994.0 4 27183
3748 7995.0 6 27189
3749 7996.0 10 27199
3750 7997.0 4 27203
3751 7998.0 12 27215
3752 7999.0 4 27219
3753 8000.0 6 27225
3754 8001.0 7 27232
3755 8027.0 4 27236
3756 10525.0 4 27240
3757 8028.0 2 27242
3758 8029.0 7 27249
3759 8030.0 3 27252
3760 8031.0 7 27259
3761 8032.0 1 27260
3762 8033.0 4 27264
3763 8034.0 2 27266
3764 8035.0 3 27269
3765 8036.0 7 27276
3766 8037.0 6 27282
3767 10526.0 23 27305
3768 8038.0 5 27310
3769 8039.0 4 27314
3770 8040.0 7 27321
3771 8041.0 5 27326
3772 8042.0 7 27333
3773 8043.0 5 27338
3774 8300.0 9 27347
3775 8301.0 8 27355
3776 8302.0 6 27361
3777 8303.0 3 27364
3778 10034.0 8 27372
3779 10527.0 7 27379
3780 8321.0 5 27384
3781 8322.0 4 27388
3782 8323.0 2 27390
3783 8324.0 4 27394
3784 8325.0 8 27402
3785 8326.0 5 27407
3786 8327.0 7 27414
3787 8328.0 1 27415
3788 8329.0 2 27417
3789 8330.0 8 27425
3790 10528.0 7 27432
3791 8331.0 5 27437
3792 8332.0 9 27446
3793 8333.0 5 27451
3794 8334.0 15 27466
3795 8335.0 3 27469
3796 8336.0 2 27471
3797 8337.0 8 27479
3798 8338.0 6 27485
3799 8339.0 4 27489
3800 8340.0 10 27499
3801 10529.0 6 27505
3802 8341.0 6 27511
3803 8342.0 4 27515
3804 8343.0 10 27525
3805 8344.0 7 27532
3806 8345.0 5 27537
3807 8346.0 5 27542
3808 8347.0 6 27548
3809 8511.0 5 27553
3810 8512.0 4 27557
3811 8513.0 7 27564
3812 10530.0 7 27571
3813 8565.0 4 27575
3814 8566.0 2 27577
3815 8567.0 4 27581
3816 8568.0 5 27586
3817 8569.0 3 27589
3818 8570.0 7 27596
3819 8571.0 7 27603
3820 8572.0 7 27610
3821 8573.0 5 27615
3822 8574.0 11 27626
3823 10647.0 6 27632
3824 8586.0 5 27637
3825 8587.0 12 27649
3826 8588.0 4 27653
3827 8589.0 6 27659
3828 8590.0 4 27663
3829 8591.0 6 27669
3830 8592.0 8 27677
3831 8593.0 5 27682
3832 8594.0 2 27684
3833 8595.0 6 27690
3834 10648.0 6 27696
3835 8596.0 1 27697
3836 8597.0 11 27708
3837 8598.0 10 27718
3838 8599.0 5 27723
3839 8600.0 8 27731
3840 8713.0 1 27732
3841 8714.0 3 27735
3842 8715.0 3 27738
3843 8716.0 1 27739
3844 8717.0 6 27745
3845 10649.0 1 27746
3846 8718.0 2 27748
3847 8719.0 2 27750
3848 8720.0 8 27758
3849 8721.0 6 27764
3850 8722.0 6 27770
3851 8723.0 3 27773
3852 8724.0 3 27776
3853 8725.0 3 27779
3854 8726.0 9 27788
3855 8727.0 4 27792
3856 10650.0 3 27795
3857 8728.0 17 27812
3858 8729.0 11 27823
3859 8730.0 5 27828
3860 8731.0 23 27851
3861 8732.0 12 27863
3862 8733.0 8 27871
3863 8734.0 10 27881
3864 8735.0 23 27904
3865 8736.0 7 27911
3866 8737.0 8 27919
3867 10651.0 6 27925
3868 8738.0 2 27927
3869 8739.0 5 27932
3870 8740.0 6 27938
3871 8741.0 3 27941
3872 8742.0 15 27956
3873 8868.0 3 27959
3874 8869.0 5 27964
3875 8870.0 18 27982
3876 8871.0 7 27989
3877 8872.0 6 27995
3878 10652.0 4 27999
3879 8873.0 10 28009
3880 8874.0 2 28011
3881 8875.0 2 28013
3882 8876.0 4 28017
3883 8877.0 6 28023
3884 8878.0 3 28026
3885 8879.0 1 28027
3886 8880.0 3 28030
3887 8881.0 13 28043
3888 8882.0 6 28049
3889 10035.0 13 28062
3890 10653.0 8 28070
3891 8883.0 12 28082
3892 9025.0 4 28086
3893 9026.0 2 28088
3894 9027.0 4 28092
3895 9028.0 3 28095
3896 9029.0 3 28098
3897 9030.0 7 28105
3898 9031.0 21 28126
3899 9032.0 2 28128
3900 9033.0 6 28134
3901 10654.0 8 28142
3902 9034.0 6 28148
3903 9035.0 7 28155
3904 9036.0 1 28156
3905 9037.0 15 28171
3906 9038.0 3 28174
3907 9039.0 4 28178
3908 9040.0 3 28181
3909 9041.0 15 28196
3910 9042.0 1 28197
3911 9043.0 18 28215
3912 10857.0 5 28220
3913 9044.0 4 28224
3914 9045.0 2 28226
3915 9046.0 5 28231
3916 9047.0 13 28244
3917 9048.0 9 28253
3918 9049.0 12 28265
3919 9050.0 5 28270
3920 9051.0 2 28272
3921 9052.0 8 28280
3922 9053.0 6 28286
3923 10858.0 4 28290
3924 9054.0 13 28303
3925 9457.0 6 28309
3926 9458.0 10 28319
3927 9459.0 8 28327
3928 9460.0 6 28333
3929 9461.0 3 28336
3930 9462.0 3 28339
3931 9463.0 16 28355
3932 9464.0 6 28361
3933 9465.0 7 28368
3934 10859.0 7 28375
3935 9466.0 9 28384
3936 9467.0 3 28387
3937 9468.0 5 28392
3938 9469.0 10 28402
3939 9470.0 3 28405
3940 9471.0 6 28411
3941 9472.0 22 28433
3942 9473.0 5 28438
3943 9474.0 8 28446
3944 9475.0 10 28456
3945 10860.0 1 28457
3946 9509.0 8 28465
3947 9510.0 8 28473
3948 9511.0 7 28480
3949 9512.0 3 28483
3950 9513.0 1 28484
3951 9514.0 6 28490
3952 9515.0 5 28495
3953 9516.0 8 28503
3954 9517.0 1 28504
3955 9518.0 3 28507
3956 10861.0 15 28522
3957 9519.0 9 28531
3958 9520.0 7 28538
3959 9521.0 4 28542
3960 9522.0 10 28552
3961 9523.0 10 28562
3962 9524.0 18 28580
3963 9525.0 7 28587
3964 9526.0 12 28599
3965 9527.0 5 28604
3966 9528.0 15 28619
3967 10862.0 10 28629
3968 9529.0 10 28639
3969 9530.0 6 28645
3970 9531.0 10 28655
3971 9532.0 7 28662
3972 9533.0 18 28680
3973 9534.0 16 28696
3974 9535.0 9 28705
3975 9671.0 3 28708
3976 9672.0 3 28711
3977 9673.0 9 28720
3978 10863.0 15 28735
3979 9674.0 16 28751
3980 9675.0 11 28762
3981 9676.0 7 28769
3982 9677.0 5 28774
3983 9678.0 9 28783
3984 9679.0 3 28786
3985 9680.0 2 28788
3986 9681.0 6 28794
3987 9682.0 5 28799
3988 9683.0 5 28804
3989 10864.0 14 28818
3990 9684.0 5 28823
3991 9685.0 2 28825
3992 9686.0 7 28832
3993 9687.0 6 28838
3994 9688.0 33 28871
3995 9689.0 2 28873
3996 9690.0 9 28882
3997 9691.0 3 28885
3998 9692.0 2 28887
3999 9693.0 6 28893
4000 10036.0 12 28905
4001 10865.0 4 28909
4002 9694.0 3 28912
4003 9695.0 3 28915
4004 9696.0 4 28919
4005 9697.0 4 28923
4006 9698.0 10 28933
4007 9699.0 5 28938
4008 9700.0 12 28950
4009 9789.0 5 28955
4010 9790.0 9 28964
4011 9791.0 4 28968
4012 10866.0 4 28972
4013 9792.0 6 28978
4014 9841.0 9 28987
4015 9842.0 17 29004
4016 9843.0 6 29010
4017 9844.0 2 29012
4018 9845.0 8 29020
4019 9846.0 10 29030
4020 9847.0 1 29031
4021 9848.0 2 29033
4022 9849.0 2 29035
4023 10867.0 3 29038
4024 9850.0 5 29043
4025 9851.0 3 29046
4026 9852.0 8 29054
4027 9853.0 2 29056
4028 9854.0 2 29058
4029 9855.0 5 29063
4030 9856.0 3 29066
4031 9857.0 2 29068
4032 9858.0 6 29074
4033 9859.0 6 29080
4034 10868.0 6 29086
4035 9860.0 9 29095
4036 9861.0 9 29104
4037 9862.0 5 29109
4038 9863.0 7 29116
4039 9864.0 5 29121
4040 9865.0 2 29123
4041 9866.0 4 29127
4042 9867.0 9 29136
4043 9868.0 7 29143
4044 9869.0 8 29151
4045 10869.0 3 29154
4046 9870.0 3 29157
4047 10124.0 3 29160
4048 10125.0 8 29168
4049 10126.0 18 29186
4050 10191.0 2 29188
4051 10192.0 2 29190
4052 10198.0 2 29192
4053 10199.0 3 29195
4054 10200.0 2 29197
4055 10201.0 4 29201
4056 10870.0 5 29206
4057 10202.0 10 29216
4058 10203.0 12 29228
4059 10204.0 5 29233
4060 10205.0 6 29239
4061 10206.0 3 29242
4062 10207.0 1 29243
4063 10208.0 9 29252
4064 10209.0 7 29259
4065 10210.0 6 29265
4066 10215.0 5 29270
4067 10871.0 3 29273
4068 10216.0 17 29290
4069 10315.0 4 29294
4070 10398.0 2 29296
4071 10438.0 3 29299
4072 10439.0 5 29304
4073 10440.0 8 29312
4074 10441.0 5 29317
4075 10442.0 5 29322
4076 10443.0 7 29329
4077 10444.0 6 29335
4078 10872.0 7 29342
4079 10445.0 4 29346
4080 10446.0 5 29351
4081 10447.0 8 29359
4082 10448.0 30 29389
4083 10449.0 20 29409
4084 10450.0 5 29414
4085 10451.0 7 29421
4086 10452.0 6 29427
4087 10453.0 4 29431
4088 10454.0 14 29445
4089 10873.0 5 29450
4090 10455.0 6 29456
4091 10456.0 9 29465
4092 10457.0 3 29468
4093 10492.0 0 29468
4094 10493.0 4 29472
4095 10494.0 4 29476
4096 10495.0 5 29481
4097 10496.0 4 29485
4098 10497.0 7 29492
4099 10498.0 4 29496
4100 11014.0 2 29498
4101 10499.0 8 29506
4102 10500.0 17 29523
4103 10501.0 12 29535
4104 10502.0 10 29545
4105 10538.0 9 29554
4106 10539.0 16 29570
4107 10540.0 5 29575
4108 10541.0 10 29585
4109 10542.0 7 29592
4110 10543.0 5 29597

In [123]:
reviews


Out[123]:
[10027.0,
 10028.0,
 10037.0,
 11015.0,
 10544.0,
 10714.0,
 10715.0,
 10716.0,
 10717.0,
 10718.0,
 10719.0,
 10753.0,
 10754.0,
 10755.0,
 11016.0,
 10756.0,
 10757.0,
 10758.0,
 10759.0,
 10760.0,
 10775.0,
 10776.0,
 10777.0,
 10778.0,
 10779.0,
 11017.0,
 10780.0,
 10781.0,
 10782.0,
 10783.0,
 10784.0,
 10785.0,
 10786.0,
 10787.0,
 10788.0,
 10794.0,
 11018.0,
 10795.0,
 10796.0,
 10797.0,
 10798.0,
 10799.0,
 10800.0,
 10801.0,
 10802.0,
 10803.0,
 10804.0,
 11019.0,
 10805.0,
 10806.0,
 10807.0,
 10808.0,
 10809.0,
 10810.0,
 10811.0,
 10812.0,
 10826.0,
 10827.0,
 11020.0,
 10828.0,
 10829.0,
 10830.0,
 10831.0,
 10832.0,
 10833.0,
 10834.0,
 10835.0,
 10836.0,
 10837.0,
 11021.0,
 10838.0,
 10902.0,
 10903.0,
 10904.0,
 10905.0,
 10906.0,
 10907.0,
 10908.0,
 10909.0,
 10910.0,
 11022.0,
 10911.0,
 10912.0,
 10913.0,
 10914.0,
 11035.0,
 11088.0,
 11089.0,
 11090.0,
 11091.0,
 11092.0,
 11023.0,
 11093.0,
 11118.0,
 11119.0,
 11120.0,
 11158.0,
 11159.0,
 11160.0,
 11161.0,
 11162.0,
 11163.0,
 11024.0,
 11164.0,
 11165.0,
 11166.0,
 11167.0,
 11168.0,
 11240.0,
 11241.0,
 11242.0,
 11243.0,
 11244.0,
 10038.0,
 11025.0,
 11245.0,
 11246.0,
 11247.0,
 11248.0,
 11249.0,
 11250.0,
 11251.0,
 11252.0,
 11253.0,
 11254.0,
 11026.0,
 11255.0,
 11256.0,
 11257.0,
 11258.0,
 11307.0,
 11308.0,
 11309.0,
 11337.0,
 11338.0,
 11393.0,
 11027.0,
 11394.0,
 11395.0,
 11527.0,
 11532.0,
 11649.0,
 11650.0,
 11651.0,
 11652.0,
 11653.0,
 11654.0,
 11028.0,
 11655.0,
 11656.0,
 11657.0,
 11658.0,
 11659.0,
 11660.0,
 11661.0,
 11662.0,
 11663.0,
 11677.0,
 11029.0,
 11678.0,
 11679.0,
 11680.0,
 11681.0,
 11682.0,
 11683.0,
 11684.0,
 11685.0,
 11686.0,
 11687.0,
 11030.0,
 11688.0,
 11689.0,
 11690.0,
 11744.0,
 11767.0,
 11768.0,
 11769.0,
 11827.0,
 11828.0,
 11829.0,
 11031.0,
 11830.0,
 11831.0,
 11832.0,
 11833.0,
 11834.0,
 11835.0,
 11836.0,
 11837.0,
 11861.0,
 11862.0,
 11032.0,
 11863.0,
 11864.0,
 11920.0,
 11968.0,
 11969.0,
 11970.0,
 11971.0,
 12040.0,
 12041.0,
 12042.0,
 11033.0,
 12043.0,
 12044.0,
 12045.0,
 12046.0,
 12047.0,
 12051.0,
 12052.0,
 12053.0,
 12054.0,
 12136.0,
 11195.0,
 12137.0,
 12138.0,
 12139.0,
 12184.0,
 12185.0,
 12186.0,
 12187.0,
 12188.0,
 12189.0,
 12190.0,
 10039.0,
 11196.0,
 12191.0,
 12192.0,
 12193.0,
 12234.0,
 12235.0,
 12236.0,
 12264.0,
 12265.0,
 12306.0,
 12307.0,
 11197.0,
 12308.0,
 12309.0,
 12310.0,
 12311.0,
 12312.0,
 12313.0,
 12314.0,
 12315.0,
 12316.0,
 12332.0,
 11198.0,
 12333.0,
 12334.0,
 12335.0,
 12346.0,
 12347.0,
 12348.0,
 12349.0,
 12350.0,
 12351.0,
 12352.0,
 11199.0,
 12353.0,
 12354.0,
 12355.0,
 12356.0,
 12357.0,
 12358.0,
 12377.0,
 12378.0,
 12379.0,
 12380.0,
 11200.0,
 12405.0,
 12406.0,
 12425.0,
 12426.0,
 12427.0,
 12428.0,
 12429.0,
 12430.0,
 12431.0,
 12432.0,
 11201.0,
 12433.0,
 12434.0,
 12435.0,
 12436.0,
 12437.0,
 12438.0,
 12439.0,
 12458.0,
 12459.0,
 12460.0,
 11202.0,
 12461.0,
 12462.0,
 12463.0,
 12464.0,
 12465.0,
 12466.0,
 12467.0,
 12468.0,
 12469.0,
 12470.0,
 11203.0,
 12471.0,
 12498.0,
 12499.0,
 7455.0,
 7456.0,
 7457.0,
 7458.0,
 7459.0,
 7460.0,
 7461.0,
 11204.0,
 7462.0,
 7463.0,
 7464.0,
 7465.0,
 7466.0,
 7467.0,
 7468.0,
 7477.0,
 7478.0,
 7479.0,
 11418.0,
 7480.0,
 7481.0,
 7482.0,
 7483.0,
 7484.0,
 7485.0,
 7486.0,
 7487.0,
 7488.0,
 7496.0,
 10040.0,
 11419.0,
 7497.0,
 7498.0,
 7499.0,
 7500.0,
 7501.0,
 7502.0,
 7503.0,
 7504.0,
 7505.0,
 7506.0,
 11420.0,
 7507.0,
 7508.0,
 7509.0,
 7510.0,
 7511.0,
 7512.0,
 7513.0,
 7734.0,
 7735.0,
 7736.0,
 11421.0,
 7737.0,
 7738.0,
 7739.0,
 7740.0,
 7741.0,
 7742.0,
 7743.0,
 7744.0,
 7768.0,
 7769.0,
 11422.0,
 7770.0,
 7771.0,
 7772.0,
 7773.0,
 7774.0,
 7778.0,
 7779.0,
 7780.0,
 7781.0,
 7782.0,
 11423.0,
 7783.0,
 7784.0,
 7812.0,
 7813.0,
 7814.0,
 7815.0,
 7816.0,
 7817.0,
 7818.0,
 7819.0,
 11424.0,
 7820.0,
 7821.0,
 7822.0,
 7823.0,
 7824.0,
 7825.0,
 7826.0,
 7827.0,
 7911.0,
 7912.0,
 11425.0,
 7913.0,
 7914.0,
 7915.0,
 7916.0,
 7980.0,
 7981.0,
 7982.0,
 8092.0,
 8093.0,
 8094.0,
 11426.0,
 8095.0,
 8096.0,
 8097.0,
 8098.0,
 8099.0,
 8100.0,
 8185.0,
 8186.0,
 8187.0,
 8188.0,
 11427.0,
 8189.0,
 8190.0,
 8191.0,
 8192.0,
 8193.0,
 8194.0,
 8195.0,
 8196.0,
 8197.0,
 8209.0,
 11428.0,
 8210.0,
 8211.0,
 8212.0,
 8265.0,
 8266.0,
 8267.0,
 8268.0,
 8338.0,
 8409.0,
 8410.0,
 10041.0,
 11429.0,
 8411.0,
 8412.0,
 8413.0,
 8414.0,
 8415.0,
 8416.0,
 8417.0,
 8418.0,
 8419.0,
 8451.0,
 11430.0,
 8586.0,
 8587.0,
 8588.0,
 8589.0,
 8590.0,
 8591.0,
 8592.0,
 8593.0,
 8666.0,
 8667.0,
 11431.0,
 8728.0,
 8729.0,
 8730.0,
 8776.0,
 8777.0,
 8778.0,
 8779.0,
 8780.0,
 8781.0,
 8782.0,
 11432.0,
 8783.0,
 8784.0,
 8785.0,
 8786.0,
 8787.0,
 8788.0,
 8804.0,
 8805.0,
 8806.0,
 8871.0,
 11617.0,
 8872.0,
 8873.0,
 8874.0,
 8875.0,
 8876.0,
 8877.0,
 9026.0,
 9027.0,
 9028.0,
 9029.0,
 11618.0,
 9030.0,
 9031.0,
 9041.0,
 9042.0,
 9043.0,
 9044.0,
 9045.0,
 9046.0,
 9415.0,
 9521.0,
 11619.0,
 9522.0,
 9523.0,
 9623.0,
 9624.0,
 9625.0,
 9626.0,
 9627.0,
 9628.0,
 9629.0,
 9630.0,
 11620.0,
 9631.0,
 9752.0,
 9788.0,
 9789.0,
 9790.0,
 9791.0,
 9844.0,
 9845.0,
 9970.0,
 9971.0,
 11621.0,
 9972.0,
 9973.0,
 9974.0,
 9975.0,
 9976.0,
 9977.0,
 0.0,
 10113.0,
 10114.0,
 10115.0,
 11622.0,
 10116.0,
 10117.0,
 10118.0,
 10119.0,
 10120.0,
 10121.0,
 10122.0,
 10123.0,
 10124.0,
 10125.0,
 10042.0,
 11623.0,
 10126.0,
 10127.0,
 10128.0,
 10129.0,
 10130.0,
 10131.0,
 10132.0,
 10133.0,
 10134.0,
 10135.0,
 11624.0,
 10136.0,
 10137.0,
 10138.0,
 10876.0,
 10877.0,
 10878.0,
 10879.0,
 10880.0,
 10881.0,
 10882.0,
 11625.0,
 10883.0,
 10884.0,
 10885.0,
 10886.0,
 10887.0,
 10888.0,
 10889.0,
 10890.0,
 10891.0,
 10892.0,
 11626.0,
 10893.0,
 10894.0,
 10895.0,
 10896.0,
 10897.0,
 10900.0,
 10901.0,
 10902.0,
 10903.0,
 10904.0,
 11627.0,
 10905.0,
 10906.0,
 10907.0,
 10908.0,
 10909.0,
 10910.0,
 10911.0,
 10912.0,
 10913.0,
 10914.0,
 11628.0,
 10915.0,
 10916.0,
 10917.0,
 10918.0,
 10919.0,
 10920.0,
 10921.0,
 10922.0,
 10.0,
 11374.0,
 11629.0,
 11375.0,
 11376.0,
 11377.0,
 11378.0,
 11379.0,
 11380.0,
 11381.0,
 11382.0,
 11383.0,
 11384.0,
 11630.0,
 11385.0,
 11386.0,
 11387.0,
 11388.0,
 11389.0,
 11390.0,
 11391.0,
 11392.0,
 11393.0,
 11394.0,
 11631.0,
 11395.0,
 11396.0,
 11397.0,
 11398.0,
 11399.0,
 11400.0,
 11401.0,
 11402.0,
 11403.0,
 11404.0,
 11632.0,
 11405.0,
 11406.0,
 11407.0,
 11408.0,
 11409.0,
 11410.0,
 11411.0,
 11412.0,
 11413.0,
 11414.0,
 10043.0,
 11633.0,
 11415.0,
 11416.0,
 11417.0,
 11418.0,
 11419.0,
 11420.0,
 11467.0,
 11468.0,
 11469.0,
 11470.0,
 11634.0,
 11471.0,
 11472.0,
 11640.0,
 11641.0,
 11642.0,
 11643.0,
 11644.0,
 11645.0,
 11646.0,
 11647.0,
 11635.0,
 11648.0,
 11649.0,
 11650.0,
 11651.0,
 11652.0,
 11653.0,
 11654.0,
 11655.0,
 11656.0,
 11657.0,
 11636.0,
 11658.0,
 11659.0,
 11660.0,
 11661.0,
 11662.0,
 11663.0,
 11664.0,
 11665.0,
 11666.0,
 11667.0,
 11637.0,
 11668.0,
 11669.0,
 1170.0,
 1171.0,
 1172.0,
 1173.0,
 1174.0,
 1175.0,
 1176.0,
 1177.0,
 11638.0,
 1178.0,
 1179.0,
 1180.0,
 1181.0,
 1182.0,
 11909.0,
 11910.0,
 11911.0,
 11912.0,
 11913.0,
 11639.0,
 11914.0,
 11915.0,
 11916.0,
 11917.0,
 11918.0,
 11919.0,
 11920.0,
 11921.0,
 11922.0,
 11923.0,
 11640.0,
 11924.0,
 11925.0,
 11926.0,
 11927.0,
 11928.0,
 11929.0,
 11930.0,
 11931.0,
 11932.0,
 11933.0,
 11685.0,
 11934.0,
 11935.0,
 11936.0,
 11937.0,
 11938.0,
 11.0,
 12177.0,
 12178.0,
 12179.0,
 12180.0,
 11686.0,
 12181.0,
 12182.0,
 12183.0,
 12184.0,
 12185.0,
 12186.0,
 12187.0,
 12188.0,
 12189.0,
 12190.0,
 10044.0,
 11687.0,
 12191.0,
 12192.0,
 12193.0,
 12194.0,
 12195.0,
 12196.0,
 12197.0,
 1291.0,
 1292.0,
 12.0,
 11688.0,
 1327.0,
 1328.0,
 1329.0,
 1330.0,
 1331.0,
 1332.0,
 1333.0,
 1334.0,
 13.0,
 14.0,
 11689.0,
 15.0,
 1620.0,
 1621.0,
 1622.0,
 1623.0,
 1624.0,
 1625.0,
 1626.0,
 1627.0,
 1628.0,
 11690.0,
 1629.0,
 1630.0,
 1631.0,
 1632.0,
 1633.0,
 1634.0,
 1635.0,
 1697.0,
 1698.0,
 1699.0,
 11691.0,
 16.0,
 1700.0,
 1701.0,
 1702.0,
 1703.0,
 1704.0,
 1705.0,
 1826.0,
 1827.0,
 1828.0,
 11692.0,
 1829.0,
 1830.0,
 1831.0,
 1832.0,
 1833.0,
 1834.0,
 1835.0,
 1836.0,
 1837.0,
 1838.0,
 11693.0,
 1839.0,
 1840.0,
 1841.0,
 1842.0,
 1843.0,
 1844.0,
 1845.0,
 1846.0,
 1847.0,
 1848.0,
 11694.0,
 1849.0,
 1850.0,
 1851.0,
 1852.0,
 1853.0,
 1854.0,
 1855.0,
 1.0,
 2038.0,
 2039.0,
 11807.0,
 2040.0,
 2041.0,
 2042.0,
 2043.0,
 2044.0,
 2045.0,
 2046.0,
 2047.0,
 2048.0,
 2049.0,
 11808.0,
 2050.0,
 2051.0,
 2052.0,
 2053.0,
 2054.0,
 2055.0,
 2056.0,
 2057.0,
 2058.0,
 2059.0,
 10045.0,
 11809.0,
 2060.0,
 2061.0,
 2062.0,
 2063.0,
 2064.0,
 2065.0,
 2066.0,
 2067.0,
 2184.0,
 2185.0,
 11810.0,
 2186.0,
 2187.0,
 2188.0,
 2189.0,
 2190.0,
 2191.0,
 2192.0,
 2193.0,
 2194.0,
 2195.0,
 11811.0,
 2196.0,
 2197.0,
 2198.0,
 2199.0,
 2200.0,
 2201.0,
 2202.0,
 2203.0,
 2204.0,
 2205.0,
 11812.0,
 2206.0,
 2207.0,
 2277.0,
 2278.0,
 2279.0,
 2280.0,
 2281.0,
 2282.0,
 2283.0,
 2284.0,
 11813.0,
 2285.0,
 2286.0,
 2287.0,
 2288.0,
 2289.0,
 2290.0,
 2291.0,
 2292.0,
 2293.0,
 2294.0,
 11814.0,
 2295.0,
 2296.0,
 2307.0,
 2308.0,
 2309.0,
 2310.0,
 2311.0,
 2312.0,
 2313.0,
 2314.0,
 11815.0,
 2315.0,
 2316.0,
 2317.0,
 2318.0,
 2319.0,
 2320.0,
 2321.0,
 2322.0,
 2323.0,
 2324.0,
 11816.0,
 2325.0,
 2326.0,
 2327.0,
 2328.0,
 2329.0,
 2330.0,
 2331.0,
 2332.0,
 2333.0,
 2334.0,
 11817.0,
 2335.0,
 2336.0,
 2378.0,
 2837.0,
 2838.0,
 2839.0,
 2840.0,
 2841.0,
 2842.0,
 2843.0,
 11818.0,
 2844.0,
 2845.0,
 2846.0,
 2847.0,
 2848.0,
 2849.0,
 2850.0,
 2851.0,
 2852.0,
 ...]

In [124]:
#review 10715
rlist_sample = []
nlist_sample, alist_sample = review_parts[6]
ln_sample=len(nlist_sample)
localbow_sample=corpus[51:56]
for bow, adj, noun in zip(localbow_sample, alist_sample, nlist_sample):
    doc=" ".join([ id2word[e[0]] for e in bow])
    pplus=calc_pplus(adj, logpositives, lognegatives, priorp, priorn)
    topicis=choose_topic(lda2, bow)
    ldict={"topic": topicis, 'pplus':pplus}
    rlist_sample.append(ldict)
print len(rlist_sample)


5

In [125]:
rlist_sample


Out[125]:
[{'pplus': 0.70964073864955146, 'topic': 1},
 {'pplus': 0.96615975937878162, 'topic': 0},
 {'pplus': 0.40413085249289121, 'topic': 1},
 {'pplus': 0.19880577059630264, 'topic': 1},
 {'pplus': 0.45376542283443838, 'topic': 1}]

In [126]:
list_of_dicts=[]
counter = 0
sentence_counter = 0
for index, row in maas_IMDB.iterrows():
    counter += 1
    revs=reviewdict[str(int(row.movie_id))]
    print row.movie_id, len(revs)
    sentence_counter += len(revs)
    for r in revs:
        r2=r.copy()
        r2['movie_id']=row.movie_name
        r2['url']=row.url
        r2['review_id']=row.movie_id
        r2['stars']=row.stars
        r2['valence_avg']=row.valence_avg
        r2['valence_sum']=row.valence_sum
        list_of_dicts.append(r2)
print counter, sentence_counter


10027.0 13
10028.0 6
10037.0 6
11015.0 7
10544.0 13
10714.0 6
10715.0 3
10716.0 4
10717.0 5
10718.0 5
10719.0 13
10753.0 3
10754.0 2
10755.0 3
11016.0 4
10756.0 23
10757.0 5
10758.0 4
10759.0 6
10760.0 11
10775.0 5
10776.0 7
10777.0 4
10778.0 1
10779.0 5
11017.0 1
10780.0 0
10781.0 6
10782.0 2
10783.0 5
10784.0 3
10785.0 7
10786.0 6
10787.0 5
10788.0 11
10794.0 2
11018.0 1
10795.0 5
10796.0 1
10797.0 4
10798.0 13
10799.0 7
10800.0 3
10801.0 7
10802.0 8
10803.0 1
10804.0 29
11019.0 2
10805.0 4
10806.0 5
10807.0 8
10808.0 5
10809.0 3
10810.0 3
10811.0 2
10812.0 2
10826.0 6
10827.0 11
11020.0 19
10828.0 8
10829.0 8
10830.0 4
10831.0 3
10832.0 3
10833.0 4
10834.0 5
10835.0 6
10836.0 12
10837.0 6
11021.0 4
10838.0 7
10902.0 11
10903.0 4
10904.0 15
10905.0 5
10906.0 4
10907.0 6
10908.0 6
10909.0 6
10910.0 11
11022.0 2
10911.0 17
10912.0 3
10913.0 4
10914.0 41
11035.0 13
11088.0 1
11089.0 4
11090.0 1
11091.0 2
11092.0 12
11023.0 5
11093.0 5
11118.0 5
11119.0 10
11120.0 10
11158.0 17
11159.0 3
11160.0 10
11161.0 28
11162.0 3
11163.0 8
11024.0 4
11164.0 5
11165.0 4
11166.0 8
11167.0 7
11168.0 5
11240.0 9
11241.0 14
11242.0 6
11243.0 21
11244.0 18
10038.0 13
11025.0 11
11245.0 12
11246.0 13
11247.0 4
11248.0 7
11249.0 4
11250.0 3
11251.0 7
11252.0 21
11253.0 8
11254.0 3
11026.0 17
11255.0 5
11256.0 9
11257.0 4
11258.0 8
11307.0 3
11308.0 8
11309.0 2
11337.0 24
11338.0 15
11393.0 6
11027.0 5
11394.0 6
11395.0 5
11527.0 4
11532.0 15
11649.0 2
11650.0 5
11651.0 3
11652.0 4
11653.0 5
11654.0 7
11028.0 6
11655.0 10
11656.0 4
11657.0 3
11658.0 4
11659.0 3
11660.0 2
11661.0 9
11662.0 6
11663.0 3
11677.0 3
11029.0 9
11678.0 11
11679.0 5
11680.0 9
11681.0 5
11682.0 3
11683.0 7
11684.0 6
11685.0 3
11686.0 2
11687.0 2
11030.0 14
11688.0 4
11689.0 7
11690.0 2
11744.0 11
11767.0 7
11768.0 13
11769.0 19
11827.0 5
11828.0 4
11829.0 7
11031.0 8
11830.0 7
11831.0 7
11832.0 13
11833.0 8
11834.0 8
11835.0 6
11836.0 7
11837.0 5
11861.0 14
11862.0 9
11032.0 1
11863.0 12
11864.0 8
11920.0 2
11968.0 10
11969.0 4
11970.0 5
11971.0 10
12040.0 23
12041.0 7
12042.0 2
11033.0 11
12043.0 8
12044.0 5
12045.0 5
12046.0 5
12047.0 5
12051.0 3
12052.0 5
12053.0 3
12054.0 8
12136.0 6
11195.0 10
12137.0 3
12138.0 3
12139.0 9
12184.0 5
12185.0 1
12186.0 6
12187.0 4
12188.0 3
12189.0 6
12190.0 1
10039.0 10
11196.0 10
12191.0 10
12192.0 8
12193.0 4
12234.0 2
12235.0 3
12236.0 7
12264.0 5
12265.0 1
12306.0 4
12307.0 2
11197.0 5
12308.0 4
12309.0 4
12310.0 8
12311.0 4
12312.0 13
12313.0 5
12314.0 9
12315.0 3
12316.0 4
12332.0 4
11198.0 10
12333.0 2
12334.0 3
12335.0 2
12346.0 8
12347.0 7
12348.0 4
12349.0 9
12350.0 4
12351.0 5
12352.0 3
11199.0 7
12353.0 0
12354.0 3
12355.0 7
12356.0 3
12357.0 6
12358.0 5
12377.0 21
12378.0 12
12379.0 5
12380.0 10
11200.0 8
12405.0 5
12406.0 12
12425.0 12
12426.0 3
12427.0 5
12428.0 3
12429.0 3
12430.0 11
12431.0 15
12432.0 4
11201.0 8
12433.0 6
12434.0 6
12435.0 6
12436.0 15
12437.0 9
12438.0 7
12439.0 6
12458.0 7
12459.0 8
12460.0 5
11202.0 4
12461.0 3
12462.0 2
12463.0 5
12464.0 2
12465.0 6
12466.0 7
12467.0 5
12468.0 7
12469.0 6
12470.0 17
11203.0 17
12471.0 2
12498.0 1
12499.0 9
7455.0 2
7456.0 6
7457.0 5
7458.0 21
7459.0 13
7460.0 8
7461.0 2
11204.0 2
7462.0 2
7463.0 12
7464.0 3
7465.0 40
7466.0 3
7467.0 11
7468.0 4
7477.0 5
7478.0 7
7479.0 6
11418.0 3
7480.0 5
7481.0 10
7482.0 5
7483.0 10
7484.0 25
7485.0 5
7486.0 16
7487.0 7
7488.0 6
7496.0 2
10040.0 12
11419.0 4
7497.0 2
7498.0 4
7499.0 5
7500.0 6
7501.0 4
7502.0 6
7503.0 19
7504.0 8
7505.0 6
7506.0 3
11420.0 5
7507.0 6
7508.0 9
7509.0 9
7510.0 8
7511.0 7
7512.0 5
7513.0 2
7734.0 31
7735.0 3
7736.0 5
11421.0 9
7737.0 5
7738.0 1
7739.0 5
7740.0 16
7741.0 15
7742.0 15
7743.0 2
7744.0 16
7768.0 5
7769.0 9
11422.0 13
7770.0 7
7771.0 3
7772.0 9
7773.0 8
7774.0 10
7778.0 6
7779.0 5
7780.0 7
7781.0 5
7782.0 14
11423.0 13
7783.0 3
7784.0 3
7812.0 15
7813.0 9
7814.0 11
7815.0 3
7816.0 17
7817.0 1
7818.0 5
7819.0 9
11424.0 9
7820.0 24
7821.0 5
7822.0 4
7823.0 20
7824.0 18
7825.0 22
7826.0 7
7827.0 21
7911.0 15
7912.0 24
11425.0 6
7913.0 24
7914.0 9
7915.0 5
7916.0 25
7980.0 4
7981.0 7
7982.0 4
8092.0 5
8093.0 1
8094.0 11
11426.0 6
8095.0 27
8096.0 3
8097.0 5
8098.0 6
8099.0 4
8100.0 12
8185.0 6
8186.0 5
8187.0 4
8188.0 10
11427.0 2
8189.0 9
8190.0 10
8191.0 9
8192.0 5
8193.0 14
8194.0 3
8195.0 10
8196.0 9
8197.0 6
8209.0 4
11428.0 7
8210.0 8
8211.0 4
8212.0 2
8265.0 4
8266.0 2
8267.0 12
8268.0 7
8338.0 6
8409.0 3
8410.0 9
10041.0 24
11429.0 17
8411.0 12
8412.0 12
8413.0 27
8414.0 1
8415.0 3
8416.0 2
8417.0 9
8418.0 7
8419.0 6
8451.0 6
11430.0 4
8586.0 5
8587.0 12
8588.0 4
8589.0 6
8590.0 4
8591.0 6
8592.0 8
8593.0 5
8666.0 7
8667.0 4
11431.0 6
8728.0 17
8729.0 11
8730.0 5
8776.0 5
8777.0 6
8778.0 7
8779.0 5
8780.0 8
8781.0 21
8782.0 21
11432.0 18
8783.0 4
8784.0 2
8785.0 7
8786.0 14
8787.0 4
8788.0 6
8804.0 8
8805.0 2
8806.0 4
8871.0 7
11617.0 5
8872.0 6
8873.0 10
8874.0 2
8875.0 2
8876.0 4
8877.0 6
9026.0 2
9027.0 4
9028.0 3
9029.0 3
11618.0 9
9030.0 7
9031.0 21
9041.0 15
9042.0 1
9043.0 18
9044.0 4
9045.0 2
9046.0 5
9415.0 4
9521.0 4
11619.0 5
9522.0 10
9523.0 10
9623.0 10
9624.0 6
9625.0 9
9626.0 6
9627.0 4
9628.0 2
9629.0 7
9630.0 2
11620.0 15
9631.0 7
9752.0 4
9788.0 4
9789.0 5
9790.0 9
9791.0 4
9844.0 2
9845.0 8
9970.0 12
9971.0 12
11621.0 2
9972.0 4
9973.0 5
9974.0 2
9975.0 4
9976.0 5
9977.0 10
0.0 6
10113.0 7
10114.0 6
10115.0 2
11622.0 10
10116.0 2
10117.0 1
10118.0 13
10119.0 2
10120.0 3
10121.0 4
10122.0 3
10123.0 6
10124.0 3
10125.0 8
10042.0 3
11623.0 3
10126.0 18
10127.0 2
10128.0 6
10129.0 9
10130.0 7
10131.0 12
10132.0 4
10133.0 9
10134.0 3
10135.0 11
11624.0 2
10136.0 6
10137.0 2
10138.0 5
10876.0 1
10877.0 3
10878.0 12
10879.0 1
10880.0 6
10881.0 6
10882.0 5
11625.0 18
10883.0 4
10884.0 4
10885.0 4
10886.0 2
10887.0 3
10888.0 18
10889.0 1
10890.0 11
10891.0 8
10892.0 11
11626.0 8
10893.0 4
10894.0 14
10895.0 2
10896.0 10
10897.0 1
10900.0 6
10901.0 9
10902.0 11
10903.0 4
10904.0 15
11627.0 3
10905.0 5
10906.0 4
10907.0 6
10908.0 6
10909.0 6
10910.0 11
10911.0 17
10912.0 3
10913.0 4
10914.0 41
11628.0 10
10915.0 7
10916.0 12
10917.0 2
10918.0 5
10919.0 5
10920.0 6
10921.0 4
10922.0 7
10.0 7
11374.0 5
11629.0 9
11375.0 15
11376.0 4
11377.0 5
11378.0 5
11379.0 3
11380.0 1
11381.0 4
11382.0 4
11383.0 12
11384.0 10
11630.0 8
11385.0 2
11386.0 5
11387.0 2
11388.0 3
11389.0 10
11390.0 7
11391.0 6
11392.0 18
11393.0 6
11394.0 6
11631.0 15
11395.0 5
11396.0 3
11397.0 10
11398.0 4
11399.0 4
11400.0 4
11401.0 17
11402.0 15
11403.0 1
11404.0 7
11632.0 8
11405.0 7
11406.0 4
11407.0 7
11408.0 12
11409.0 7
11410.0 3
11411.0 6
11412.0 7
11413.0 9
11414.0 9
10043.0 3
11633.0 6
11415.0 7
11416.0 9
11417.0 10
11418.0 3
11419.0 4
11420.0 5
11467.0 3
11468.0 2
11469.0 4
11470.0 4
11634.0 4
11471.0 16
11472.0 8
11640.0 7
11641.0 3
11642.0 7
11643.0 4
11644.0 10
11645.0 6
11646.0 9
11647.0 2
11635.0 19
11648.0 8
11649.0 2
11650.0 5
11651.0 3
11652.0 4
11653.0 5
11654.0 7
11655.0 10
11656.0 4
11657.0 3
11636.0 7
11658.0 4
11659.0 3
11660.0 2
11661.0 9
11662.0 6
11663.0 3
11664.0 5
11665.0 3
11666.0 23
11667.0 1
11637.0 15
11668.0 3
11669.0 2
1170.0 2
1171.0 9
1172.0 3
1173.0 1
1174.0 9
1175.0 3
1176.0 4
1177.0 6
11638.0 6
1178.0 3
1179.0 2
1180.0 6
1181.0 7
1182.0 5
11909.0 4
11910.0 4
11911.0 21
11912.0 5
11913.0 7
11639.0 5
11914.0 6
11915.0 4
11916.0 5
11917.0 4
11918.0 5
11919.0 3
11920.0 2
11921.0 2
11922.0 3
11923.0 3
11640.0 7
11924.0 3
11925.0 14
11926.0 6
11927.0 5
11928.0 6
11929.0 7
11930.0 3
11931.0 5
11932.0 4
11933.0 2
11685.0 3
11934.0 1
11935.0 9
11936.0 7
11937.0 5
11938.0 8
11.0 16
12177.0 5
12178.0 18
12179.0 3
12180.0 2
11686.0 2
12181.0 10
12182.0 4
12183.0 2
12184.0 5
12185.0 1
12186.0 6
12187.0 4
12188.0 3
12189.0 6
12190.0 1
10044.0 50
11687.0 2
12191.0 10
12192.0 8
12193.0 4
12194.0 10
12195.0 8
12196.0 4
12197.0 18
1291.0 5
1292.0 3
12.0 6
11688.0 4
1327.0 5
1328.0 7
1329.0 15
1330.0 6
1331.0 5
1332.0 4
1333.0 4
1334.0 4
13.0 3
14.0 8
11689.0 7
15.0 4
1620.0 8
1621.0 6
1622.0 7
1623.0 6
1624.0 15
1625.0 6
1626.0 5
1627.0 7
1628.0 9
11690.0 2
1629.0 5
1630.0 10
1631.0 6
1632.0 5
1633.0 13
1634.0 19
1635.0 12
1697.0 8
1698.0 8
1699.0 6
11691.0 8
16.0 8
1700.0 4
1701.0 9
1702.0 6
1703.0 10
1704.0 4
1705.0 10
1826.0 3
1827.0 3
1828.0 7
11692.0 6
1829.0 2
1830.0 3
1831.0 2
1832.0 2
1833.0 3
1834.0 6
1835.0 6
1836.0 2
1837.0 10
1838.0 5
11693.0 5
1839.0 5
1840.0 7
1841.0 4
1842.0 8
1843.0 5
1844.0 2
1845.0 12
1846.0 5
1847.0 6
1848.0 4
11694.0 16
1849.0 5
1850.0 5
1851.0 3
1852.0 4
1853.0 24
1854.0 6
1855.0 7
1.0 9
2038.0 6
2039.0 6
11807.0 6
2040.0 2
2041.0 5
2042.0 3
2043.0 6
2044.0 6
2045.0 2
2046.0 3
2047.0 8
2048.0 3
2049.0 2
11808.0 10
2050.0 8
2051.0 13
2052.0 7
2053.0 3
2054.0 6
2055.0 20
2056.0 9
2057.0 1
2058.0 5
2059.0 4
10045.0 15
11809.0 7
2060.0 13
2061.0 8
2062.0 7
2063.0 6
2064.0 6
2065.0 8
2066.0 4
2067.0 15
2184.0 6
2185.0 5
11810.0 20
2186.0 3
2187.0 15
2188.0 8
2189.0 14
2190.0 4
2191.0 3
2192.0 6
2193.0 10
2194.0 21
2195.0 5
11811.0 11
2196.0 7
2197.0 5
2198.0 4
2199.0 12
2200.0 6
2201.0 5
2202.0 4
2203.0 1
2204.0 20
2205.0 5
11812.0 5
2206.0 10
2207.0 6
2277.0 5
2278.0 5
2279.0 5
2280.0 5
2281.0 22
2282.0 5
2283.0 1
2284.0 4
11813.0 6
2285.0 4
2286.0 7
2287.0 6
2288.0 14
2289.0 7
2290.0 12
2291.0 3
2292.0 6
2293.0 3
2294.0 4
11814.0 9
2295.0 11
2296.0 3
2307.0 2
2308.0 1
2309.0 4
2310.0 2
2311.0 3
2312.0 4
2313.0 5
2314.0 4
11815.0 8
2315.0 2
2316.0 1
2317.0 4
2318.0 7
2319.0 5
2320.0 5
2321.0 5
2322.0 4
2323.0 3
2324.0 4
11816.0 6
2325.0 8
2326.0 3
2327.0 5
2328.0 11
2329.0 8
2330.0 7
2331.0 4
2332.0 17
2333.0 7
2334.0 4
11817.0 6
2335.0 4
2336.0 15
2378.0 9
2837.0 4
2838.0 6
2839.0 5
2840.0 7
2841.0 5
2842.0 4
2843.0 2
11818.0 13
2844.0 8
2845.0 6
2846.0 9
2847.0 12
2848.0 5
2849.0 5
2850.0 4
2851.0 12
2852.0 3
2853.0 28
10046.0 18
11819.0 6
2854.0 2
2855.0 6
2856.0 16
2857.0 11
2858.0 17
2859.0 11
2860.0 6
2861.0 13
2.0 5
3008.0 9
11820.0 13
3009.0 4
3010.0 8
3011.0 3
3012.0 6
3013.0 10
3014.0 4
3015.0 8
3016.0 4
3017.0 8
3018.0 6
11821.0 16
3019.0 23
3020.0 9
3021.0 5
3022.0 5
3023.0 7
3024.0 5
3025.0 18
3026.0 15
3027.0 3
3028.0 11
11822.0 1
3029.0 12
3030.0 11
3031.0 18
3032.0 2
3059.0 8
3060.0 7
3061.0 9
3062.0 5
3063.0 7
3064.0 3
11823.0 4
3065.0 5
3066.0 2
3067.0 6
3068.0 4
3069.0 3
3070.0 9
3071.0 6
3072.0 3
3073.0 6
3074.0 5
11824.0 1
3075.0 8
3076.0 2
3077.0 4
3078.0 6
3079.0 7
3080.0 5
3081.0 3
3082.0 7
3083.0 4
3084.0 1
11825.0 2
3085.0 11
3086.0 2
3087.0 18
3088.0 6
3144.0 13
3145.0 1
3146.0 2
3147.0 6
3148.0 8
3149.0 5
11826.0 9
3150.0 7
3151.0 4
3273.0 19
3274.0 3
3275.0 3
3276.0 15
3277.0 3
3278.0 15
3279.0 5
3280.0 12
11827.0 5
3446.0 2
3447.0 5
3448.0 3
3449.0 4
3450.0 5
3594.0 9
3595.0 7
3596.0 4
3597.0 5
3598.0 4
11828.0 4
3599.0 2
3600.0 5
3601.0 6
3602.0 3
3603.0 8
3604.0 7
3605.0 4
3606.0 2
3607.0 5
3608.0 10
10029.0 7
10047.0 6
11829.0 7
3609.0 12
3610.0 2
3611.0 7
3612.0 11
3613.0 6
3614.0 3
3615.0 4
3616.0 17
3617.0 10
3618.0 5
11830.0 7
3619.0 17
3731.0 5
3732.0 7
3733.0 6
3734.0 6
3735.0 13
3736.0 5
3737.0 3
3738.0 5
3739.0 5
11831.0 7
3740.0 15
3741.0 4
3742.0 4
3743.0 22
3744.0 9
3909.0 5
3910.0 2
3911.0 7
3912.0 7
3913.0 6
11832.0 13
3914.0 1
3915.0 10
3916.0 10
3917.0 1
3918.0 2
3919.0 6
3920.0 10
3921.0 11
3922.0 6
3923.0 2
11833.0 8
3924.0 6
3925.0 13
3926.0 5
3927.0 11
3928.0 14
3929.0 16
3930.0 7
3931.0 32
3932.0 7
3933.0 3
11834.0 8
3934.0 11
3960.0 5
3961.0 4
3962.0 4
3963.0 8
3964.0 4
3965.0 5
3966.0 7
3967.0 20
3968.0 8
11835.0 6
3969.0 4
3970.0 7
3971.0 14
3972.0 5
3973.0 8
3974.0 13
3975.0 5
3976.0 12
3977.0 4
3978.0 4
11836.0 7
3979.0 2
3980.0 6
3981.0 6
3.0 5
4003.0 6
4004.0 14
4005.0 8
4057.0 7
4058.0 14
4059.0 5
11837.0 5
4060.0 4
4061.0 10
4062.0 6
4063.0 11
4064.0 7
4065.0 6
4066.0 21
4067.0 2
4068.0 8
4069.0 11
11838.0 8
4070.0 6
4071.0 18
4072.0 5
4073.0 2
4074.0 4
4075.0 3
4215.0 7
4216.0 5
4217.0 3
4218.0 11
10048.0 23
11839.0 5
4219.0 3
4220.0 2
4221.0 3
4222.0 3
4223.0 6
4224.0 4
4225.0 7
4226.0 4
4227.0 3
4228.0 4
11840.0 14
4229.0 3
4230.0 1
4231.0 7
4232.0 5
4233.0 3
4234.0 10
4235.0 3
4236.0 9
4237.0 6
4238.0 5
11841.0 5
4239.0 3
4240.0 3
4241.0 6
4242.0 10
4243.0 20
4244.0 23
4378.0 14
4379.0 3
4380.0 11
4381.0 5
11842.0 2
4382.0 3
4383.0 2
4384.0 9
4385.0 5
4386.0 4
4387.0 3
4388.0 3
4389.0 6
4390.0 3
4391.0 9
11843.0 12
4392.0 3
4393.0 6
4394.0 5
4395.0 2
4396.0 2
4397.0 5
4398.0 6
4399.0 7
4400.0 6
4401.0 24
11844.0 3
4402.0 5
4403.0 8
4404.0 7
4532.0 8
4533.0 8
4534.0 5
4535.0 4
4536.0 3
4537.0 5
4538.0 6
11845.0 4
4539.0 2
4540.0 2
4541.0 2
4542.0 4
4543.0 4
4544.0 4
4545.0 4
4546.0 2
4547.0 5
4548.0 1
11846.0 5
4549.0 5
4550.0 25
4551.0 9
4552.0 9
4553.0 3
4554.0 4
4555.0 11
4556.0 1
4557.0 6
4558.0 5
11847.0 8
4559.0 5
4663.0 9
4664.0 13
4665.0 6
4666.0 3
4667.0 10
4668.0 18
4669.0 14
4670.0 6
4671.0 14
11848.0 4
4672.0 14
4673.0 4
4674.0 12
4675.0 1
4676.0 5
4677.0 3
4678.0 9
4679.0 16
4680.0 4
4681.0 7
10286.0 11
11849.0 5
4682.0 19
4683.0 10
4684.0 10
4685.0 8
489.0 1
490.0 20
491.0 2
492.0 2
493.0 5
494.0 3
11850.0 1
495.0 1
496.0 2
497.0 4
498.0 3
499.0 3
4.0 5
500.0 9
5018.0 6
5019.0 6
501.0 9
11851.0 2
5020.0 2
5021.0 12
5022.0 5
5023.0 3
5024.0 8
5025.0 2
5026.0 4
5027.0 2
5028.0 4
5029.0 5
11852.0 2
502.0 4
5030.0 8
5031.0 5
5032.0 1
5033.0 3
5034.0 6
5035.0 8
5036.0 4
5037.0 8
5038.0 5
12036.0 4
5039.0 4
503.0 6
5040.0 7
5041.0 4
504.0 3
505.0 4
506.0 4
507.0 13
508.0 10
509.0 10
12037.0 11
5109.0 4
510.0 4
5110.0 2
5111.0 3
5112.0 3
5113.0 2
5114.0 5
5115.0 5
5116.0 7
5117.0 3
12038.0 3
5118.0 2
5119.0 4
511.0 23
512.0 3
513.0 3
514.0 1
515.0 16
516.0 6
529.0 2
530.0 5
12039.0 8
531.0 2
532.0 6
533.0 13
534.0 5
535.0 6
536.0 3
537.0 5
538.0 3
539.0 2
540.0 4
12040.0 23
541.0 8
5429.0 8
542.0 9
5430.0 5
5431.0 7
5432.0 3
5433.0 2
5434.0 6
5435.0 10
5436.0 2
12041.0 7
5437.0 5
5438.0 10
5439.0 4
543.0 6
5440.0 1
5441.0 4
5442.0 4
5443.0 2
5444.0 4
5445.0 2
10287.0 3
12042.0 2
5446.0 7
544.0 5
545.0 9
546.0 5
5473.0 2
5474.0 3
5475.0 6
5476.0 9
5477.0 3
5478.0 9
12043.0 8
5479.0 8
547.0 7
5480.0 4
5481.0 9
5482.0 7
5483.0 3
5484.0 1
5485.0 12
5486.0 11
5487.0 9
12044.0 5
5488.0 7
5489.0 14
548.0 7
5490.0 6
5491.0 4
5492.0 6
5493.0 7
5494.0 19
5495.0 10
5496.0 4
12045.0 5
5497.0 1
5498.0 5
5499.0 3
549.0 4
5500.0 7
550.0 8
551.0 5
552.0 5
553.0 4
554.0 2
12046.0 5
555.0 7
556.0 4
557.0 7
5846.0 13
5847.0 5
5848.0 7
5849.0 3
5850.0 3
5851.0 27
5852.0 1
12047.0 5
5853.0 9
5854.0 10
5855.0 5
5856.0 1
5857.0 2
5858.0 15
5859.0 4
5860.0 3
5861.0 20
5862.0 16
12048.0 3
5.0 13
6068.0 3
6069.0 6
6070.0 1
6071.0 13
6072.0 7
6073.0 1
6074.0 15
6075.0 4
6076.0 5
12049.0 7
6077.0 6
6078.0 23
6079.0 19
6080.0 4
6081.0 1
6082.0 23
6083.0 2
6084.0 9
6085.0 20
6086.0 10
12050.0 20
6087.0 7
6088.0 14
6089.0 6
6090.0 6
6091.0 4
6092.0 6
6093.0 4
6094.0 22
6649.0 7
6650.0 9
12051.0 3
6651.0 7
6652.0 1
6653.0 21
6654.0 7
6655.0 6
6656.0 15
6657.0 6
6658.0 4
6659.0 11
6660.0 8
10288.0 0
12052.0 5
6661.0 8
6662.0 20
6663.0 8
6664.0 5
6665.0 3
6666.0 13
6667.0 3
6668.0 21
6669.0 13
6670.0 8
12053.0 3
6671.0 2
6672.0 3
6673.0 2
6674.0 6
6675.0 7
6676.0 28
6677.0 3
6678.0 9
6679.0 14
6680.0 8
12054.0 8
6681.0 5
6682.0 6
6683.0 5
6684.0 5
6685.0 18
6686.0 7
6687.0 6
6688.0 7
6689.0 10
6690.0 4
12055.0 15
6691.0 4
6692.0 16
6693.0 27
6694.0 15
6910.0 13
6911.0 4
6912.0 23
6913.0 21
6979.0 8
6980.0 7
12056.0 13
6981.0 4
6982.0 13
6983.0 6
6984.0 9
6985.0 3
6986.0 7
6987.0 3
6988.0 14
6989.0 3
6990.0 8
12057.0 1
6991.0 9
6992.0 16
6993.0 3
6994.0 5
6995.0 5
6996.0 4
6997.0 5
6998.0 11
6999.0 9
6.0 4
12058.0 6
7000.0 8
7001.0 3
7002.0 4
7003.0 7
7004.0 5
7005.0 5
7006.0 10
7007.0 5
7008.0 5
7072.0 2
12059.0 12
7073.0 2
7074.0 3
7075.0 2
7076.0 5
7077.0 3
7078.0 7
7079.0 7
7080.0 11
7081.0 3
7082.0 4
12060.0 4
7083.0 4
7084.0 3
7085.0 3
7086.0 2
7087.0 5
7088.0 14
7089.0 14
7090.0 4
7091.0 18
7092.0 13
12061.0 8
7093.0 4
7094.0 5
7095.0 7
7096.0 8
7142.0 9
7143.0 5
7144.0 10
7145.0 3
7146.0 2
7147.0 3
10289.0 1
12062.0 2
7314.0 6
7315.0 2
7316.0 7
7317.0 5
7318.0 3
7319.0 7
731.0 5
7320.0 4
7321.0 5
7322.0 4
12063.0 8
7323.0 6
7324.0 4
7325.0 2
7326.0 34
7327.0 2
7328.0 5
7329.0 6
732.0 5
7330.0 5
7331.0 12
12064.0 1
733.0 8
734.0 5
735.0 4
736.0 4
737.0 5
738.0 16
739.0 7
740.0 2
741.0 3
742.0 3
12220.0 2
743.0 5
744.0 9
745.0 8
746.0 11
747.0 9
748.0 7
749.0 5
750.0 10
751.0 14
752.0 15
12221.0 4
753.0 8
754.0 18
755.0 9
756.0 9
757.0 2
7593.0 9
7594.0 5
7595.0 4
7596.0 3
7597.0 3
12222.0 2
7598.0 5
7599.0 7
7600.0 11
7601.0 5
7602.0 6
7603.0 5
7604.0 8
7605.0 2
7606.0 3
7607.0 10
12223.0 8
7608.0 4
7609.0 6
7610.0 6
7611.0 4
7612.0 6
7613.0 16
7614.0 12
7615.0 4
7616.0 3
7617.0 2
12224.0 1
7618.0 7
7619.0 3
7620.0 6
7979.0 6
7980.0 4
7981.0 7
7982.0 4
7983.0 9
7984.0 9
7985.0 37
12225.0 2
7986.0 7
7987.0 8
7988.0 2
7989.0 15
7990.0 18
7991.0 12
7992.0 10
7993.0 6
7994.0 4
7995.0 6
12226.0 11
7996.0 10
7997.0 4
7998.0 12
7999.0 4
7.0 6
8000.0 6
8001.0 7
8002.0 21
8003.0 8
8004.0 8
10290.0 9
12227.0 11
8005.0 16
8006.0 12
8007.0 13
8008.0 8
8201.0 14
8202.0 3
8203.0 3
8204.0 2
8205.0 4
8206.0 7
12243.0 4
8207.0 11
8208.0 6
8209.0 4
8210.0 8
8211.0 4
8212.0 2
8213.0 4
8214.0 8
8215.0 2
8216.0 5
12244.0 12
8217.0 5
8218.0 6
8219.0 7
8381.0 19
8382.0 6
8383.0 11
8384.0 4
8385.0 11
8386.0 4
8387.0 18
12245.0 10
8388.0 12
8389.0 5
8390.0 20
8471.0 4
8472.0 3
8473.0 14
8474.0 6
8475.0 20
8476.0 3
8477.0 7
12246.0 5
8478.0 22
8479.0 6
8480.0 1
8481.0 5
8482.0 9
8483.0 5
8484.0 16
8485.0 10
8486.0 17
8487.0 6
12247.0 6
8488.0 5
8489.0 16
8490.0 14
8491.0 9
8492.0 13
8493.0 13
8494.0 5
8495.0 5
8496.0 5
8497.0 7
12248.0 16
8498.0 15
8499.0 5
8961.0 5
8962.0 28
8963.0 4
8964.0 6
8965.0 5
8966.0 10
8967.0 10
8968.0 11
12249.0 6
8969.0 11
8970.0 3
8971.0 6
8972.0 5
8973.0 18
8974.0 8
8975.0 7
8976.0 12
8977.0 5
8978.0 23
12250.0 5
8979.0 7
8980.0 6
8981.0 20
8982.0 6
8.0 6
9070.0 4
9071.0 3
9072.0 5
9073.0 16
9074.0 9
12251.0 5
9075.0 3
9076.0 5
9077.0 2
9078.0 7
9079.0 5
9080.0 11
9081.0 10
9082.0 6
9083.0 4
9084.0 15
10291.0 8
12252.0 10
9085.0 6
9086.0 5
9087.0 3
9088.0 20
9089.0 9
9090.0 5
9091.0 3
9092.0 21
9093.0 19
9165.0 5
12253.0 6
9166.0 5
9167.0 7
9168.0 4
9169.0 8
9170.0 6
9171.0 8
9172.0 11
9173.0 11
9174.0 6
9175.0 8
12254.0 2
9176.0 9
9177.0 13
9178.0 6
9179.0 6
9180.0 14
9181.0 7
9182.0 3
9183.0 2
9184.0 9
9185.0 7
12255.0 6
9186.0 6
9187.0 4
9188.0 5
9398.0 3
9399.0 7
9400.0 6
9401.0 8
9445.0 4
9446.0 5
9447.0 7
12256.0 5
9448.0 4
9449.0 3
9450.0 3
9451.0 3
9452.0 5
9453.0 3
9454.0 5
9455.0 5
9456.0 11
9457.0 6
12257.0 4
9458.0 10
9459.0 8
9460.0 6
9461.0 3
9462.0 3
9463.0 16
9464.0 6
9465.0 7
9466.0 9
9467.0 3
12258.0 6
9468.0 5
9469.0 10
9470.0 3
9471.0 6
9472.0 22
9473.0 5
9551.0 2
9552.0 1
9553.0 3
9554.0 3
12364.0 6
9555.0 5
9556.0 6
9557.0 2
9558.0 10
9559.0 4
9560.0 5
9561.0 8
9562.0 4
9563.0 10
9564.0 4
12365.0 6
9565.0 4
9566.0 5
9567.0 5
9568.0 6
9569.0 5
9570.0 14
9571.0 16
9572.0 6
9573.0 5
9574.0 5
12366.0 7
9575.0 8
9576.0 7
9577.0 5
9578.0 14
957.0 9
958.0 2
959.0 1
960.0 10
961.0 5
9629.0 7
10292.0 4
12367.0 6
962.0 2
9630.0 2
9631.0 7
9632.0 4
9633.0 7
9634.0 6
9635.0 4
9636.0 6
9637.0 1
9638.0 14
12368.0 6
963.0 3
964.0 2
965.0 1
966.0 1
967.0 7
968.0 28
969.0 17
970.0 6
971.0 12
972.0 4
12369.0 15
973.0 1
974.0 2
975.0 3
976.0 7
977.0 9
978.0 4
979.0 3
980.0 6
981.0 9
9821.0 15
12370.0 16
9822.0 2
9823.0 25
9824.0 22
9825.0 9
9826.0 6
9827.0 3
9828.0 4
9829.0 2
982.0 3
9830.0 5
12371.0 12
9831.0 4
9832.0 6
9833.0 4
9834.0 8
983.0 4
984.0 5
9866.0 4
9867.0 9
9868.0 7
9869.0 8
12372.0 15
9870.0 3
9871.0 4
9872.0 3
9873.0 3
9874.0 18
9875.0 7
9876.0 5
9877.0 10
9.0 9
0.0 6
12373.0 7
10000.0 7
10001.0 6
10002.0 11
10009.0 4
10010.0 4
10011.0 6
10069.0 7
10070.0 6
10071.0 7
10072.0 4
12374.0 10
10073.0 4
10074.0 3
10075.0 9
10076.0 5
10077.0 6
10078.0 3
10079.0 3
10080.0 3
10081.0 2
10082.0 16
12375.0 22
10125.0 8
10223.0 6
10224.0 13
10225.0 2
10226.0 4
10227.0 7
10228.0 4
1023.0 4
1024.0 12
1025.0 13
12376.0 7
10409.0 2
1053.0 13
1054.0 9
105.0 2
106.0 17
10715.0 3
10716.0 4
10717.0 5
10718.0 5
10719.0 13
10293.0 10
12377.0 21
10720.0 4
10721.0 12
10722.0 10
10723.0 7
10724.0 6
10725.0 5
10726.0 5
10727.0 7
10728.0 10
10729.0 11
12378.0 12
10730.0 6
1076.0 9
1077.0 11
1078.0 6
1079.0 18
107.0 5
1080.0 10
1081.0 2
1082.0 4
10838.0 7
12379.0 5
10839.0 4
10840.0 5
10841.0 2
10842.0 8
10843.0 7
10906.0 4
10907.0 6
11144.0 4
11145.0 6
11146.0 9
12380.0 10
11147.0 4
11148.0 4
11149.0 5
11150.0 5
11151.0 5
11152.0 4
11153.0 3
11154.0 3
11155.0 9
11156.0 2
12381.0 3
11157.0 15
11158.0 17
11159.0 3
11160.0 10
11193.0 13
11219.0 4
11220.0 5
11221.0 2
11222.0 5
11240.0 9
12382.0 8
11241.0 14
11247.0 4
11248.0 7
11249.0 4
11250.0 3
11251.0 7
11276.0 11
11292.0 7
11293.0 8
11294.0 6
12383.0 11
11295.0 7
11296.0 6
11297.0 2
11298.0 6
11299.0 19
11300.0 9
11301.0 12
11303.0 2
11304.0 6
11305.0 7
12384.0 22
11306.0 5
11307.0 3
11308.0 8
11309.0 2
11310.0 4
11311.0 7
11312.0 2
11313.0 6
11314.0 4
11315.0 6
12385.0 8
11316.0 4
11387.0 2
11388.0 3
11389.0 10
11390.0 7
11391.0 6
11392.0 18
11393.0 6
11416.0 9
11417.0 10
12386.0 7
11418.0 3
11419.0 4
11420.0 5
11421.0 9
11422.0 13
11423.0 13
11424.0 9
11599.0 5
11600.0 17
11601.0 2
10030.0 15
10294.0 5
12387.0 9
11602.0 16
11603.0 12
11604.0 7
11605.0 5
11606.0 6
11607.0 17
11822.0 1
11823.0 4
11824.0 1
11825.0 2
12388.0 7
11826.0 9
11830.0 7
11938.0 8
11939.0 2
11940.0 6
11941.0 5
11942.0 7
11943.0 7
11944.0 8
11945.0 5
12389.0 5
11946.0 10
11947.0 7
11948.0 11
11949.0 4
11950.0 16
11951.0 2
11952.0 3
12001.0 2
12002.0 5
12003.0 4
12390.0 4
12004.0 3
12005.0 2
12006.0 6
12008.0 4
12009.0 3
12010.0 2
12011.0 13
12012.0 6
12013.0 2
12014.0 8
12391.0 7
12015.0 4
12016.0 11
12017.0 4
12018.0 6
12019.0 3
12020.0 5
12021.0 14
12189.0 6
12190.0 1
12191.0 10
12497.0 5
12192.0 8
12193.0 4
12194.0 10
12195.0 8
12196.0 4
12292.0 9
12391.0 7
12392.0 11
1258.0 5
1259.0 5
12498.0 1
1260.0 5
1261.0 1
1262.0 3
1263.0 8
1272.0 4
1273.0 5
1408.0 13
1409.0 8
1410.0 7
1411.0 1
12499.0 9
1412.0 8
1413.0 2
1414.0 6
1415.0 5
1416.0 20
1417.0 14
1418.0 8
1419.0 7
1421.0 5
1422.0 4
5714.0 7
152.0 9
1532.0 2
1533.0 3
1534.0 2
1535.0 4
1536.0 10
1537.0 12
1538.0 5
1539.0 6
153.0 9
5715.0 9
1540.0 3
1541.0 1
1542.0 9
1543.0 7
1544.0 6
1583.0 14
1584.0 20
1585.0 35
1753.0 15
1754.0 4
10295.0 1
5716.0 7
1755.0 9
1756.0 8
1757.0 4
1758.0 7
1759.0 9
1760.0 11
1761.0 3
1762.0 2
1763.0 7
1764.0 5
5717.0 4
1765.0 7
1766.0 15
1845.0 12
1846.0 5
1880.0 7
1881.0 7
1882.0 2
1883.0 2
1884.0 1
190.0 5
5718.0 9
191.0 7
192.0 12
1934.0 8
1935.0 5
1936.0 7
1.0 9
2036.0 5
2037.0 11
2088.0 3
2194.0 21
5719.0 3
2195.0 5
2196.0 7
2197.0 5
2198.0 4
2199.0 12
2200.0 6
2201.0 5
2202.0 4
2203.0 1
2204.0 20
5720.0 8
2237.0 36
2238.0 5
2239.0 2
2240.0 7
2241.0 4
2242.0 3
2243.0 8
2244.0 16
2245.0 10
2246.0 17
5721.0 5
2247.0 5
2248.0 10
2249.0 17
2250.0 5
2251.0 13
2252.0 5
2253.0 7
2254.0 6
2255.0 14
2256.0 7
5722.0 12
2281.0 22
2397.0 9
2398.0 4
2399.0 6
2400.0 4
2401.0 7
2402.0 7
2403.0 5
2404.0 4
2456.0 7
5723.0 2
2457.0 9
2458.0 8
2459.0 12
2460.0 7
2461.0 5
2472.0 5
2473.0 8
2474.0 13
2475.0 9
2476.0 6
5724.0 8
2477.0 13
2525.0 8
2526.0 11
2527.0 3
2539.0 5
2553.0 3
2554.0 2
2562.0 2
2563.0 3
2564.0 4
5725.0 11
2565.0 5
2566.0 7
2567.0 11
2568.0 3
2569.0 4
256.0 5
2570.0 2
2571.0 5
2572.0 3
2573.0 7
10296.0 3
5726.0 5
2574.0 2
2575.0 1
2576.0 2
2577.0 6
2578.0 9
2579.0 5
257.0 13
2580.0 4
2581.0 3
2648.0 10
5727.0 18
2649.0 1
2650.0 4
2651.0 4
2652.0 2
2653.0 4
2654.0 3
2655.0 3
2656.0 3
2657.0 3
2658.0 6
5728.0 6
2659.0 4
265.0 6
2660.0 12
2661.0 5
2662.0 4
2663.0 3
2666.0 4
2667.0 9
2668.0 4
2669.0 6
5854.0 10
266.0 9
2670.0 5
2671.0 7
2672.0 10
2673.0 4
2674.0 20
2675.0 14
2676.0 7
2677.0 23
2678.0 8
5855.0 5
2679.0 12
267.0 5
2680.0 5
2681.0 11
2682.0 29
2683.0 7
268.0 4
269.0 1
270.0 3
2719.0 5
5856.0 1
271.0 7
2720.0 4
2721.0 1
2722.0 10
272.0 7
273.0 7
274.0 4
275.0 5
276.0 4
277.0 10
5857.0 2
278.0 9
279.0 14
280.0 6
281.0 7
282.0 12
283.0 7
284.0 10
285.0 9
286.0 21
2932.0 10
5858.0 15
2933.0 3
2934.0 32
2935.0 12
2936.0 4
2937.0 1
2938.0 4
2.0 5
3037.0 12
3038.0 22
3039.0 12
5859.0 4
3040.0 6
3041.0 7
3042.0 8
3043.0 7
3044.0 7
3045.0 19
3046.0 7
3047.0 11
3048.0 10
3049.0 9
5860.0 3
3058.0 3
3059.0 8
3060.0 7
3061.0 9
3062.0 5
3063.0 7
3317.0 11
3318.0 6
3319.0 6
3320.0 6
10297.0 4
5923.0 3
3321.0 16
3322.0 19
3323.0 4
3324.0 5
3325.0 6
3415.0 7
3435.0 2
3436.0 2
3437.0 0
3438.0 14
5924.0 3
3439.0 5
3455.0 30
3460.0 4
3461.0 7
3462.0 6
3463.0 5
3464.0 5
3465.0 6
3466.0 6
3467.0 18
5925.0 3
3468.0 4
3491.0 7
3492.0 8
3493.0 10
3494.0 10
3495.0 9
3496.0 26
3497.0 3
3498.0 7
3499.0 8
5926.0 8
3500.0 4
3501.0 26
3502.0 2
3503.0 6
3504.0 34
3505.0 8
3506.0 3
3507.0 11
3508.0 25
3509.0 10
5927.0 7
3510.0 16
3553.0 7
3554.0 6
3555.0 3
3590.0 3
3591.0 2
3592.0 2
3593.0 3
3594.0 9
3595.0 7
5928.0 7
3596.0 4
3597.0 5
3667.0 8
3787.0 7
3788.0 2
3789.0 7
3985.0 8
3986.0 6
3.0 5
4001.0 16
5929.0 2
4077.0 5
4078.0 3
4079.0 4
4080.0 3
4081.0 8
4082.0 26
4083.0 10
4084.0 4
4085.0 5
4086.0 6
5930.0 3
4087.0 13
4088.0 8
4089.0 5
408.0 23
4090.0 7
4091.0 6
4092.0 8
4093.0 15
4094.0 27
4095.0 15
5931.0 6
4096.0 9
4097.0 13
4098.0 3
409.0 4
410.0 15
411.0 4
412.0 3
413.0 7
4142.0 3
4143.0 7
5932.0 3
4144.0 14
414.0 7
415.0 5
416.0 2
417.0 8
418.0 4
419.0 8
420.0 4
421.0 11
4246.0 5
10298.0 4
5933.0 16
4247.0 6
4248.0 2
4279.0 4
427.0 2
4280.0 4
4281.0 5
4282.0 5
4283.0 4
4284.0 8
428.0 1
6118.0 1
429.0 1
430.0 2
431.0 13
432.0 1
4337.0 5
4338.0 3
4339.0 5
433.0 0
4340.0 10
4341.0 7
6119.0 2
434.0 3
435.0 5
436.0 3
437.0 3
438.0 6
439.0 3
440.0 8
441.0 3
442.0 9
443.0 17
6120.0 2
444.0 5
445.0 24
4466.0 4
4467.0 6
4468.0 5
4469.0 21
446.0 4
4470.0 6
4471.0 5
4472.0 3
6121.0 2
4473.0 14
4474.0 3
4475.0 8
4479.0 14
447.0 15
4480.0 10
4481.0 3
4482.0 11
4483.0 5
4484.0 8
6122.0 6
4485.0 5
4486.0 5
4487.0 2
4488.0 4
4489.0 7
4490.0 9
4491.0 8
4503.0 1
4514.0 2
4515.0 3
6123.0 8
4522.0 6
4523.0 2
4524.0 8
4525.0 11
4526.0 5
4527.0 8
4528.0 20
4529.0 13
4530.0 9
4608.0 5
6124.0 2
4609.0 3
4610.0 3
4611.0 7
4612.0 2
4613.0 7
4614.0 5
4615.0 2
4616.0 10
4617.0 5
4618.0 11
6125.0 9
4619.0 5
4635.0 4
4636.0 4
4658.0 25
4659.0 4
4660.0 13
4661.0 10
4662.0 4
4663.0 9
4664.0 13
6126.0 4
4665.0 6
4666.0 3
4667.0 10
4668.0 18
4669.0 14
4670.0 6
4671.0 14
4672.0 14
4673.0 4
4674.0 12
10299.0 7
6127.0 1
4704.0 2
4705.0 7
4706.0 4
4720.0 9
4829.0 20
4830.0 1
4831.0 3
4832.0 2
4833.0 8
4971.0 5
6128.0 8
4972.0 3
4976.0 5
4977.0 11
4978.0 7
4979.0 11
4980.0 7
4981.0 28
4982.0 10
4983.0 9
4984.0 6
6129.0 10
4985.0 3
4986.0 1
4987.0 7
4988.0 5
4989.0 6
4990.0 13
4991.0 9
4.0 5
5011.0 5
5012.0 2
6130.0 3
5013.0 5
5107.0 3
5154.0 6
5155.0 2
5226.0 9
5227.0 7
5228.0 5
5229.0 9
5230.0 11
5231.0 5
6131.0 3
5232.0 3
5233.0 4
5234.0 6
5235.0 19
5236.0 4
5237.0 4
5238.0 2
5239.0 2
5240.0 3
5241.0 4
6132.0 5
5242.0 7
5243.0 3
5244.0 2
5245.0 6
5246.0 3
5247.0 2
5248.0 8
5249.0 14
524.0 12
5250.0 4
6133.0 5
5251.0 9
5252.0 9
5253.0 10
5254.0 12
5255.0 1
5256.0 6
5257.0 3
5258.0 2
5259.0 6
525.0 6
6338.0 1
5260.0 8
5261.0 9
5262.0 9
526.0 22
5293.0 4
5294.0 3
5295.0 8
5296.0 6
5297.0 6
5298.0 7
6339.0 4
5299.0 6
5300.0 6
5301.0 5
5302.0 3
5303.0 2
5304.0 5
5305.0 8
5306.0 9
5307.0 20
5308.0 1
6340.0 20
5309.0 8
5310.0 7
5311.0 5
5312.0 13
5313.0 20
5314.0 23
5315.0 20
5316.0 12
5317.0 3
5318.0 5
10300.0 4
6341.0 8
5319.0 13
5320.0 4
5321.0 4
5326.0 12
5327.0 7
5328.0 5
5329.0 4
5330.0 6
5331.0 5
5332.0 7
6342.0 11
5348.0 7
5349.0 5
5350.0 6
5351.0 23
5352.0 8
5353.0 15
5354.0 12
5355.0 12
535.0 6
5429.0 8
6343.0 6
5430.0 5
5431.0 7
5432.0 3
5433.0 2
5434.0 6
5435.0 10
5436.0 2
5437.0 5
5438.0 10
5439.0 4
6344.0 4
5440.0 1
5441.0 4
5442.0 4
5443.0 2
5444.0 4
5445.0 2
5446.0 7
5447.0 4
5448.0 4
5449.0 11
6345.0 3
545.0 9
546.0 5
547.0 7
548.0 7
5498.0 5
5499.0 3
549.0 4
5500.0 7
5501.0 4
5502.0 5
6346.0 3
5503.0 13
5557.0 2
5558.0 6
5559.0 10
5781.0 5
5782.0 2
5783.0 9
5784.0 33
5785.0 5
5786.0 6
6347.0 10
5787.0 5
5788.0 5
5789.0 9
5840.0 5
5841.0 9
5842.0 11
5843.0 14
5844.0 17
5845.0 6
5846.0 13
6348.0 2
5847.0 5
5848.0 7
5849.0 3
5850.0 3
5851.0 27
5852.0 1
5888.0 15
5889.0 6
5890.0 9
5891.0 4
6349.0 2
5892.0 10
5893.0 5
58.0 11
5936.0 5
5937.0 10
5938.0 16
5996.0 6
59.0 4
5.0 13
6025.0 9
6350.0 4
6026.0 2
6027.0 4
6079.0 19
6184.0 19
6185.0 12
6186.0 2
6187.0 7
6188.0 3
6216.0 4
6217.0 5
10301.0 4
6351.0 5
6218.0 9
6219.0 4
6220.0 9
6221.0 9
6222.0 5
6223.0 5
6224.0 13
6225.0 3
6267.0 7
6268.0 5
6352.0 2
6269.0 3
6270.0 16
6271.0 6
6272.0 6
6273.0 13
6274.0 4
6275.0 6
6276.0 5
6277.0 19
6278.0 7
6353.0 2
6279.0 5
6280.0 6
6281.0 3
6335.0 4
6336.0 7
6337.0 2
6338.0 1
6339.0 4
6368.0 2
6369.0 2
6354.0 3
6370.0 6
6371.0 9
6388.0 5
6389.0 6
6390.0 1
6403.0 10
6404.0 4
6405.0 3
6406.0 3
6407.0 2
6355.0 10
6408.0 6
6409.0 11
6410.0 6
6411.0 8
6412.0 8
6413.0 6
6414.0 7
6415.0 4
6416.0 14
6433.0 8
6356.0 1
6466.0 4
6467.0 5
6468.0 3
6469.0 5
6470.0 16
6471.0 2
6472.0 5
6473.0 5
6474.0 3
6475.0 3
6357.0 6
6476.0 7
6477.0 6
6508.0 9
6509.0 5
6510.0 2
6511.0 11
6512.0 6
6513.0 5
6514.0 7
6515.0 9
6358.0 4
6526.0 6
652.0 8
653.0 7
654.0 3
655.0 7
656.0 10
6579.0 6
6580.0 7
6581.0 11
6582.0 5
6359.0 3
6583.0 10
6584.0 25
6585.0 4
6586.0 8
6826.0 11
6827.0 2
6828.0 9
6829.0 5
6830.0 5
6831.0 8
6360.0 1
6832.0 3
6833.0 9
6834.0 4
6835.0 17
6836.0 7
6837.0 9
6838.0 17
6839.0 3
6840.0 2
6841.0 28
10302.0 6
6361.0 8
6858.0 3
6872.0 5
6873.0 9
6874.0 3
694.0 12
695.0 3
696.0 5
6978.0 10
6979.0 8
697.0 2
6364.0 10
6980.0 7
6981.0 4
698.0 5
7099.0 3
7100.0 7
7117.0 4
7118.0 5
7119.0 9
7120.0 3
7121.0 5
6365.0 3
7122.0 9
7123.0 5
7124.0 8
7125.0 12
7126.0 11
7127.0 7
7128.0 6
7129.0 6
7130.0 1
7131.0 5
6366.0 0
7132.0 14
7133.0 14
7134.0 22
7135.0 9
7136.0 17
7137.0 14
7138.0 5
7139.0 4
7140.0 6
7141.0 8
6367.0 2
7142.0 9
7276.0 3
7277.0 1
7278.0 7
7279.0 6
7280.0 5
7322.0 4
7323.0 6
7344.0 4
7345.0 11
6368.0 2
7459.0 13
7475.0 9
7476.0 3
74.0 4
7515.0 15
7516.0 3
7517.0 6
7518.0 15
7519.0 16
7520.0 1
6369.0 2
7521.0 6
7522.0 3
7523.0 6
7524.0 5
7525.0 20
7526.0 13
7527.0 26
756.0 9
757.0 2
7581.0 3
6370.0 6
7582.0 6
7583.0 4
7584.0 13
7585.0 23
758.0 9
759.0 15
760.0 4
7699.0 11
7734.0 31
7735.0 3
6371.0 9
7736.0 5
7737.0 5
8073.0 35
8074.0 4
8075.0 6
8076.0 0
815.0 5
816.0 3
817.0 5
8220.0 9
6372.0 3
8221.0 22
8222.0 3
8223.0 11
8224.0 19
8225.0 9
8226.0 27
8246.0 4
8247.0 6
8248.0 8
8249.0 3
10303.0 6
6373.0 6
8250.0 7
8251.0 3
8252.0 12
8253.0 3
8270.0 5
8271.0 6
8272.0 6
8316.0 5
8317.0 9
8318.0 5
6374.0 6
8319.0 29
8320.0 11
8321.0 5
8336.0 2
8337.0 8
8338.0 6
8339.0 4
8340.0 10
8341.0 6
8342.0 4
6375.0 7
8343.0 10
8344.0 7
8345.0 5
8346.0 5
8347.0 6
8348.0 7
8349.0 5
8350.0 20
8351.0 15
844.0 8
6376.0 3
845.0 3
846.0 5
847.0 4
8508.0 4
8509.0 7
8522.0 1
8523.0 7
8524.0 5
8525.0 9
8526.0 5
6377.0 2
8527.0 1
8528.0 9
8529.0 12
8530.0 24
8531.0 20
8532.0 11
8533.0 9
8534.0 14
8535.0 10
8536.0 19
6378.0 5
8537.0 12
8538.0 17
8539.0 4
8584.0 4
8585.0 2
8586.0 5
8587.0 12
8588.0 4
8589.0 6
8590.0 4
6379.0 29
8592.0 8
8593.0 5
8594.0 2
8595.0 6
8596.0 1
8597.0 11
8621.0 0
8622.0 5
8623.0 6
8624.0 5
6380.0 7
8625.0 2
8626.0 7
8627.0 2
8628.0 12
8629.0 5
8630.0 16
8631.0 6
8632.0 5
8633.0 4
8634.0 3
6381.0 13
8635.0 10
8636.0 9
8637.0 6
870.0 5
871.0 6
872.0 4
873.0 9
874.0 17
875.0 3
876.0 5
6382.0 1
877.0 5
878.0 7
879.0 9
8808.0 7
8809.0 4
880.0 6
8810.0 5
8811.0 2
8812.0 17
8813.0 5
10031.0 11
10304.0 8
6383.0 6
8814.0 33
8815.0 20
8816.0 8
8817.0 13
8818.0 9
881.0 4
882.0 20
883.0 5
884.0 18
885.0 8
6384.0 5
9005.0 4
9006.0 4
9007.0 2
9026.0 2
9027.0 4
9028.0 3
9029.0 3
9032.0 2
9033.0 6
9034.0 6
6385.0 7
9057.0 6
9071.0 3
9072.0 5
9159.0 3
9160.0 3
9161.0 7
9162.0 12
9163.0 7
9164.0 6
9165.0 5
6386.0 26
9171.0 8
9188.0 5
9189.0 6
9190.0 5
9191.0 3
9192.0 6
9193.0 7
9194.0 2
9195.0 10
9196.0 4
6387.0 5
9197.0 10
9198.0 4
9199.0 1
925.0 11
926.0 26
927.0 18
928.0 7
9302.0 5
9303.0 19
9377.0 6
6388.0 5
9378.0 3
9393.0 2
9394.0 4
9395.0 4
9396.0 7
9397.0 7
9398.0 3
9399.0 7
939.0 4
9400.0 6
6394.0 8
9401.0 8
940.0 6
941.0 3
942.0 8
943.0 4
944.0 7
945.0 10
946.0 12
950.0 4
9542.0 7
6395.0 2
9543.0 4
9544.0 5
9545.0 7
9546.0 23
9547.0 8
9548.0 9
9549.0 8
9550.0 6
9558.0 10
9559.0 4
6396.0 3
9560.0 5
9561.0 8
9562.0 4
9563.0 10
9583.0 9
9584.0 8
967.0 7
968.0 28
969.0 17
970.0 6
6397.0 2
971.0 12
972.0 4
973.0 1
974.0 2
9750.0 4
9751.0 3
9752.0 4
9753.0 9
9754.0 9
9755.0 8
10305.0 4
6398.0 7
9756.0 4
975.0 3
976.0 7
977.0 9
9822.0 2
9823.0 25
9895.0 2
9993.0 7
9994.0 8
9995.0 5
6399.0 2
9996.0 13
6400.0 7
6401.0 10
6402.0 4
6403.0 10
6404.0 4
6405.0 3
6406.0 3
6407.0 2
10306.0 5
6408.0 6
6409.0 11
6410.0 6
6411.0 8
6412.0 8
6413.0 6
6414.0 7
6415.0 4
6416.0 14
6417.0 7
10307.0 10
6418.0 6
6419.0 8
6420.0 5
6421.0 9
6422.0 19
6529.0 5
6530.0 13
6531.0 6
6532.0 8
6533.0 4
10308.0 4
6534.0 4
6535.0 9
6536.0 10
6537.0 1
6538.0 4
6539.0 21
6540.0 4
6541.0 6
6542.0 3
6543.0 5
10309.0 3
6544.0 5
6545.0 10
6546.0 4
6547.0 12
6548.0 4
6549.0 6
6550.0 6
6551.0 6
6552.0 5
6553.0 9
10310.0 11
6554.0 10
6555.0 8
6556.0 10
6557.0 11
6558.0 7
6664.0 5
6665.0 3
6666.0 13
6667.0 3
6668.0 21
10311.0 27
6669.0 13
6670.0 8
6671.0 2
6672.0 3
6673.0 2
6674.0 6
6675.0 7
6676.0 28
6677.0 3
6678.0 9
10385.0 3
6679.0 14
6680.0 8
6681.0 5
6682.0 6
6683.0 5
6684.0 5
6685.0 18
6686.0 7
6687.0 6
6688.0 7
10386.0 4
6689.0 10
6690.0 4
6691.0 4
6692.0 16
6996.0 4
6997.0 5
6998.0 11
6999.0 9
7000.0 8
7001.0 3
10032.0 1
10387.0 11
7002.0 4
7003.0 7
7004.0 5
7005.0 5
7006.0 10
7007.0 5
7008.0 5
7009.0 12
7010.0 3
7011.0 8
10388.0 8
7012.0 4
7013.0 4
7014.0 10
7015.0 7
7016.0 6
7017.0 8
7018.0 23
7019.0 19
7020.0 23
7142.0 9
10509.0 11
7143.0 5
7144.0 10
7145.0 3
7146.0 2
7147.0 3
7148.0 3
7149.0 3
7150.0 9
7151.0 7
7152.0 3
10510.0 4
7153.0 10
7154.0 5
7155.0 5
7156.0 10
7157.0 6
7158.0 5
7159.0 5
7160.0 4
7161.0 3
7162.0 7
10511.0 10
7163.0 1
7164.0 22
7165.0 2
7166.0 10
7167.0 7
7168.0 15
7169.0 5
7170.0 3
7171.0 25
7237.0 2
10512.0 3
7238.0 17
7239.0 2
7240.0 1
7259.0 2
7260.0 7
7261.0 5
7262.0 8
7263.0 4
7264.0 1
7265.0 6
10513.0 3
7266.0 7
7267.0 15
7268.0 7
7269.0 5
7270.0 3
7271.0 5
7459.0 13
7460.0 8
7461.0 2
7462.0 2
10514.0 6
7463.0 12
7464.0 3
7465.0 40
7466.0 3
7467.0 11
7468.0 4
7469.0 3
7470.0 3
7471.0 5
7472.0 5
10515.0 4
7473.0 3
7474.0 3
7475.0 9
7476.0 3
7477.0 5
7478.0 7
7479.0 6
7480.0 5
7481.0 10
7482.0 5
10516.0 24
7483.0 10
7484.0 25
7485.0 5
7486.0 16
7632.0 12
7633.0 12
7634.0 4
7635.0 8
7636.0 7
7637.0 6
10033.0 9
10517.0 4
7638.0 9
7639.0 5
7640.0 18
7641.0 2
7642.0 9
7643.0 4
7644.0 5
7645.0 7
7646.0 2
7647.0 12
10518.0 8
7648.0 5
7649.0 4
7883.0 8
7884.0 3
7885.0 14
7886.0 3
7887.0 5
7888.0 1
7889.0 1
7890.0 11
10519.0 4
7891.0 12
7892.0 1
7893.0 19
7944.0 8
7945.0 11
7946.0 10
7947.0 3
7948.0 17
7949.0 10
7950.0 7
10520.0 8
7951.0 8
7952.0 6
7953.0 1
7954.0 7
7955.0 4
7956.0 4
7957.0 5
7958.0 1
7959.0 6
7960.0 6
10521.0 10
7961.0 16
7962.0 9
7963.0 3
7964.0 4
7965.0 6
7966.0 9
7967.0 8
7968.0 11
7969.0 2
7970.0 5
10522.0 6
7971.0 4
7972.0 3
7973.0 5
7976.0 6
7977.0 7
7978.0 11
7979.0 6
7980.0 4
7981.0 7
7982.0 4
10523.0 12
7983.0 9
7984.0 9
7985.0 37
7986.0 7
7987.0 8
7988.0 2
7989.0 15
7990.0 18
7991.0 12
7992.0 10
10524.0 3
7993.0 6
7994.0 4
7995.0 6
7996.0 10
7997.0 4
7998.0 12
7999.0 4
8000.0 6
8001.0 7
8027.0 4
10525.0 4
8028.0 2
8029.0 7
8030.0 3
8031.0 7
8032.0 1
8033.0 4
8034.0 2
8035.0 3
8036.0 7
8037.0 6
10526.0 23
8038.0 5
8039.0 4
8040.0 7
8041.0 5
8042.0 7
8043.0 5
8300.0 9
8301.0 8
8302.0 6
8303.0 3
10034.0 8
10527.0 7
8321.0 5
8322.0 4
8323.0 2
8324.0 4
8325.0 8
8326.0 5
8327.0 7
8328.0 1
8329.0 2
8330.0 8
10528.0 7
8331.0 5
8332.0 9
8333.0 5
8334.0 15
8335.0 3
8336.0 2
8337.0 8
8338.0 6
8339.0 4
8340.0 10
10529.0 6
8341.0 6
8342.0 4
8343.0 10
8344.0 7
8345.0 5
8346.0 5
8347.0 6
8511.0 5
8512.0 4
8513.0 7
10530.0 7
8565.0 4
8566.0 2
8567.0 4
8568.0 5
8569.0 3
8570.0 7
8571.0 7
8572.0 7
8573.0 5
8574.0 11
10647.0 6
8586.0 5
8587.0 12
8588.0 4
8589.0 6
8590.0 4
8591.0 6
8592.0 8
8593.0 5
8594.0 2
8595.0 6
10648.0 6
8596.0 1
8597.0 11
8598.0 10
8599.0 5
8600.0 8
8713.0 1
8714.0 3
8715.0 3
8716.0 1
8717.0 6
10649.0 1
8718.0 2
8719.0 2
8720.0 8
8721.0 6
8722.0 6
8723.0 3
8724.0 3
8725.0 3
8726.0 9
8727.0 4
10650.0 3
8728.0 17
8729.0 11
8730.0 5
8731.0 23
8732.0 12
8733.0 8
8734.0 10
8735.0 23
8736.0 7
8737.0 8
10651.0 6
8738.0 2
8739.0 5
8740.0 6
8741.0 3
8742.0 15
8868.0 3
8869.0 5
8870.0 18
8871.0 7
8872.0 6
10652.0 4
8873.0 10
8874.0 2
8875.0 2
8876.0 4
8877.0 6
8878.0 3
8879.0 1
8880.0 3
8881.0 13
8882.0 6
10035.0 13
10653.0 8
8883.0 12
9025.0 4
9026.0 2
9027.0 4
9028.0 3
9029.0 3
9030.0 7
9031.0 21
9032.0 2
9033.0 6
10654.0 8
9034.0 6
9035.0 7
9036.0 1
9037.0 15
9038.0 3
9039.0 4
9040.0 3
9041.0 15
9042.0 1
9043.0 18
10857.0 5
9044.0 4
9045.0 2
9046.0 5
9047.0 13
9048.0 9
9049.0 12
9050.0 5
9051.0 2
9052.0 8
9053.0 6
10858.0 4
9054.0 13
9457.0 6
9458.0 10
9459.0 8
9460.0 6
9461.0 3
9462.0 3
9463.0 16
9464.0 6
9465.0 7
10859.0 7
9466.0 9
9467.0 3
9468.0 5
9469.0 10
9470.0 3
9471.0 6
9472.0 22
9473.0 5
9474.0 8
9475.0 10
10860.0 1
9509.0 8
9510.0 8
9511.0 7
9512.0 3
9513.0 1
9514.0 6
9515.0 5
9516.0 8
9517.0 1
9518.0 3
10861.0 15
9519.0 9
9520.0 7
9521.0 4
9522.0 10
9523.0 10
9524.0 18
9525.0 7
9526.0 12
9527.0 5
9528.0 15
10862.0 10
9529.0 10
9530.0 6
9531.0 10
9532.0 7
9533.0 18
9534.0 16
9535.0 9
9671.0 3
9672.0 3
9673.0 9
10863.0 15
9674.0 16
9675.0 11
9676.0 7
9677.0 5
9678.0 9
9679.0 3
9680.0 2
9681.0 6
9682.0 5
9683.0 5
10864.0 14
9684.0 5
9685.0 2
9686.0 7
9687.0 6
9688.0 33
9689.0 2
9690.0 9
9691.0 3
9692.0 2
9693.0 6
10036.0 12
10865.0 4
9694.0 3
9695.0 3
9696.0 4
9697.0 4
9698.0 10
9699.0 5
9700.0 12
9789.0 5
9790.0 9
9791.0 4
10866.0 4
9792.0 6
9841.0 9
9842.0 17
9843.0 6
9844.0 2
9845.0 8
9846.0 10
9847.0 1
9848.0 2
9849.0 2
10867.0 3
9850.0 5
9851.0 3
9852.0 8
9853.0 2
9854.0 2
9855.0 5
9856.0 3
9857.0 2
9858.0 6
9859.0 6
10868.0 6
9860.0 9
9861.0 9
9862.0 5
9863.0 7
9864.0 5
9865.0 2
9866.0 4
9867.0 9
9868.0 7
9869.0 8
10869.0 3
9870.0 3
10124.0 3
10125.0 8
10126.0 18
10191.0 2
10192.0 2
10198.0 2
10199.0 3
10200.0 2
10201.0 4
10870.0 5
10202.0 10
10203.0 12
10204.0 5
10205.0 6
10206.0 3
10207.0 1
10208.0 9
10209.0 7
10210.0 6
10215.0 5
10871.0 3
10216.0 17
10315.0 4
10398.0 2
10438.0 3
10439.0 5
10440.0 8
10441.0 5
10442.0 5
10443.0 7
10444.0 6
10872.0 7
10445.0 4
10446.0 5
10447.0 8
10448.0 30
10449.0 20
10450.0 5
10451.0 7
10452.0 6
10453.0 4
10454.0 14
10873.0 5
10455.0 6
10456.0 9
10457.0 3
10492.0 0
10493.0 4
10494.0 4
10495.0 5
10496.0 4
10497.0 7
10498.0 4
11014.0 2
10499.0 8
10500.0 17
10501.0 12
10502.0 10
10538.0 9
10539.0 16
10540.0 5
10541.0 10
10542.0 7
10543.0 5
4111 29402

In [128]:
reviewdict['10715']


Out[128]:
[{'pplus': 0.90217176279141065, 'topic': 0},
 {'pplus': 0.65892010883869923, 'topic': 0},
 {'pplus': 0.82406544561929362, 'topic': 0}]

In [129]:
review_parts[0]


Out[129]:
([[u'sure', u'movie', u'time', u'time', u'opinion', u'film', u'change'],
  [u'time', u'movie', u'ooh'],
  [u'time', u'movie', u'thinking', u'd**n', u'ship'],
  [u'time'],
  [u'acting', u'film'],
  [u'oscar', u'film'],
  [u'movie', u'film'],
  [u'film'],
  [u'eye', u'character', u'film'],
  [u'performance', u'hand'],
  [u'director', u'film', u'magnitude'],
  [u'lesson', u'movie', u'love-story', u'filmmaker', u'romance', u'movie'],
  [u'film']],
 [[u'good', u'second'],
  [u'love-story', u'romantic'],
  [u'second', u'annoying'],
  [u'impressive'],
  [u'bad', u'great'],
  [u'glad'],
  [u'half-good'],
  [u'suprised'],
  [u'worst'],
  [u'wonderful'],
  [u'talented'],
  [u'crummy', u'single'],
  [u'possible', u'mere']])

In [131]:
def extendit(row):
    outlist=[]
    revs=reviewdict[row.review_id]
    for r in revs:
        r2=r.copy()
        r2['business_id']=row.business_id
        r2['user_id']=row.user_id
        r2['review_id']=row.review_id
        r2['stars']=row.stars
        r2['user_avg']=row.user_avg
        outlist.append(r2)
    return outlist

In [138]:
completedf=pd.DataFrame(list_of_dicts)
completedf.head()


Out[138]:
movie_id pplus review_id stars topic url valence_avg valence_sum
0 Titanic 0.833386 10027 7 1 http://www.imdb.com/title/tt0120338/usercommen... 0.47976 38.380826
1 Titanic 0.933069 10027 7 1 http://www.imdb.com/title/tt0120338/usercommen... 0.47976 38.380826
2 Titanic 0.863956 10027 7 0 http://www.imdb.com/title/tt0120338/usercommen... 0.47976 38.380826
3 Titanic 0.193702 10027 7 0 http://www.imdb.com/title/tt0120338/usercommen... 0.47976 38.380826
4 Titanic 0.831243 10027 7 0 http://www.imdb.com/title/tt0120338/usercommen... 0.47976 38.380826

In [139]:
completedf.shape


Out[139]:
(29402, 8)

In [148]:
completedf[completedf.review_id == 1]


Out[148]:
movie_id pplus review_id stars topic url valence_avg valence_sum
6094 The Guardian 0.767554 1 10 0 http://www.imdb.com/title/tt0406816/usercommen... 0.463927 22.268495
6095 The Guardian 0.959387 1 10 1 http://www.imdb.com/title/tt0406816/usercommen... 0.463927 22.268495
6096 The Guardian 0.590485 1 10 0 http://www.imdb.com/title/tt0406816/usercommen... 0.463927 22.268495
6097 The Guardian 0.991269 1 10 1 http://www.imdb.com/title/tt0406816/usercommen... 0.463927 22.268495
6098 The Guardian 0.878913 1 10 1 http://www.imdb.com/title/tt0406816/usercommen... 0.463927 22.268495
6099 The Guardian 0.198263 1 10 1 http://www.imdb.com/title/tt0406816/usercommen... 0.463927 22.268495
6100 The Guardian 0.987382 1 10 0 http://www.imdb.com/title/tt0406816/usercommen... 0.463927 22.268495
6101 The Guardian 0.890644 1 10 0 http://www.imdb.com/title/tt0406816/usercommen... 0.463927 22.268495
6102 The Guardian 0.945111 1 10 1 http://www.imdb.com/title/tt0406816/usercommen... 0.463927 22.268495
16729 The Guardian 0.767554 1 3 0 http://www.imdb.com/title/tt0406816/usercommen... 0.040237 1.689933
16730 The Guardian 0.959387 1 3 1 http://www.imdb.com/title/tt0406816/usercommen... 0.040237 1.689933
16731 The Guardian 0.590485 1 3 0 http://www.imdb.com/title/tt0406816/usercommen... 0.040237 1.689933
16732 The Guardian 0.991269 1 3 1 http://www.imdb.com/title/tt0406816/usercommen... 0.040237 1.689933
16733 The Guardian 0.878913 1 3 1 http://www.imdb.com/title/tt0406816/usercommen... 0.040237 1.689933
16734 The Guardian 0.198263 1 3 1 http://www.imdb.com/title/tt0406816/usercommen... 0.040237 1.689933
16735 The Guardian 0.987382 1 3 0 http://www.imdb.com/title/tt0406816/usercommen... 0.040237 1.689933
16736 The Guardian 0.890644 1 3 0 http://www.imdb.com/title/tt0406816/usercommen... 0.040237 1.689933
16737 The Guardian 0.945111 1 3 1 http://www.imdb.com/title/tt0406816/usercommen... 0.040237 1.689933

5. Estimate the overall mean for each movie on each topic


In [140]:
def get_stats(group):
    min_pplus = group.pplus.min()
    max_pplus = group.pplus.max()
    rid = group.movie_id.unique()
    valence_avg = group.valence_avg.mean()
    valence_sum = group.valence_sum.mean()
    count = group.topic.count()
    if count == 1: 
        varj = 0
    else: 
        varj = group.pplus.var(ddof=1)
    mean_pplus = group.pplus.mean()
    stars = group.stars.mean()
    return pd.DataFrame({'min': min_pplus, 'max':max_pplus ,'valence_avg': valence_avg,'valence_sum':valence_sum, 
                         'count': count,'var': varj, 'mean': mean_pplus, 'stars': stars}, index=rid)

In [149]:
%%time
dftouse=completedf.groupby(['review_id', 'topic']).apply(get_stats).reset_index()


CPU times: user 9.42 s, sys: 70.9 ms, total: 9.5 s
Wall time: 9.5 s

In [150]:
print dftouse.shape
dftouse = dftouse.rename(columns={'level_2': 'movie_t', '$b': 'b'})
dftouse.head()


(7619, 11)
Out[150]:
review_id topic level_2 count max mean min stars valence_avg valence_sum var
0 0 0 The Guardian 4 0.959577 0.931161 0.902744 6.0 0.332231 16.730396 0.001077
1 0 1 The Guardian 8 0.869453 0.690997 0.379703 6.0 0.332231 16.730396 0.039329
2 1 0 The Guardian 8 0.987382 0.809016 0.590485 6.5 0.252082 11.979214 0.025129
3 1 1 The Guardian 10 0.991269 0.794589 0.198263 6.5 0.252082 11.979214 0.100270
4 2 0 The Guardian 4 0.907921 0.842568 0.777215 5.0 0.318188 28.525569 0.005695

In [137]:
dftouse[dftouse.review_id==10037]


Out[137]:
review_id topic level_2 count max mean min stars valence_avg valence_sum var
5767 10037 0 Titanic 4 0.868201 0.704629 0.552403 9 0.700832 39.246578 0.016687
5768 10037 1 Titanic 2 0.879267 0.661613 0.443958 9 0.700832 39.246578 0.094747

Using the NLTK library


In [130]:
! pip install nltk


Requirement already satisfied (use --upgrade to upgrade): nltk in /anaconda/lib/python2.7/site-packages

In [131]:
import nltk
from nltk.corpus import sentiwordnet as swn


---------------------------------------------------------------------------
ImportError                               Traceback (most recent call last)
<ipython-input-131-5d8c84d1c160> in <module>()
      1 import nltk
----> 2 from nltk.corpus import sentiwordnet as swn

ImportError: cannot import name sentiwordnet

In [30]:
happy = swn.senti_synset('happy.n.03')
>>> print(happy)


---------------------------------------------------------------------------
NameError                                 Traceback (most recent call last)
<ipython-input-30-f3487f8e9748> in <module>()
----> 1 happy = swn.senti_synset('happy.n.03')
      2 print(happy)

NameError: name 'swn' is not defined

In [25]:
type(wn)


Out[25]:
nltk.corpus.util.LazyCorpusLoader

In [ ]: